├── .clang-format ├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── options.h ├── screenshot.png └── xcompmgr.c /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | diagonator 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaxollum/diagonator-x11/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaxollum/diagonator-x11/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaxollum/diagonator-x11/HEAD/README.md -------------------------------------------------------------------------------- /options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaxollum/diagonator-x11/HEAD/options.h -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaxollum/diagonator-x11/HEAD/screenshot.png -------------------------------------------------------------------------------- /xcompmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaxollum/diagonator-x11/HEAD/xcompmgr.c --------------------------------------------------------------------------------