├── .clang-format ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── doc ├── img │ ├── colors.svg │ ├── dimensions.svg │ ├── features.svg │ ├── i3-style.png │ ├── positionning │ │ ├── pos00.svg │ │ ├── pos01.svg │ │ ├── pos02.svg │ │ ├── pos03.svg │ │ ├── pos04.svg │ │ ├── pos05.svg │ │ ├── pos06.svg │ │ ├── pos07.svg │ │ ├── pos08.svg │ │ └── pos09.svg │ ├── screencast.gif │ └── states │ │ ├── empty.svg │ │ ├── full.svg │ │ ├── overflow-hidden-alt.svg │ │ ├── overflow-hidden.svg │ │ ├── overflow-proportional-alt.svg │ │ ├── overflow-proportional.svg │ │ ├── quarter-alt.svg │ │ └── quarter.svg ├── xob.1 └── xob.md ├── src ├── conf.c ├── conf.h ├── display.c ├── display.h ├── display_xlib.c ├── display_xrender.c ├── main.c └── main.h └── styles.cfg /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: llvm 2 | IndentWidth: 4 3 | BreakBeforeBraces: Allman 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | src/*.o 2 | xob 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/README.md -------------------------------------------------------------------------------- /doc/img/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/colors.svg -------------------------------------------------------------------------------- /doc/img/dimensions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/dimensions.svg -------------------------------------------------------------------------------- /doc/img/features.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/features.svg -------------------------------------------------------------------------------- /doc/img/i3-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/i3-style.png -------------------------------------------------------------------------------- /doc/img/positionning/pos00.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/positionning/pos00.svg -------------------------------------------------------------------------------- /doc/img/positionning/pos01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/positionning/pos01.svg -------------------------------------------------------------------------------- /doc/img/positionning/pos02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/positionning/pos02.svg -------------------------------------------------------------------------------- /doc/img/positionning/pos03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/positionning/pos03.svg -------------------------------------------------------------------------------- /doc/img/positionning/pos04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/positionning/pos04.svg -------------------------------------------------------------------------------- /doc/img/positionning/pos05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/positionning/pos05.svg -------------------------------------------------------------------------------- /doc/img/positionning/pos06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/positionning/pos06.svg -------------------------------------------------------------------------------- /doc/img/positionning/pos07.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/positionning/pos07.svg -------------------------------------------------------------------------------- /doc/img/positionning/pos08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/positionning/pos08.svg -------------------------------------------------------------------------------- /doc/img/positionning/pos09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/positionning/pos09.svg -------------------------------------------------------------------------------- /doc/img/screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/screencast.gif -------------------------------------------------------------------------------- /doc/img/states/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/states/empty.svg -------------------------------------------------------------------------------- /doc/img/states/full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/states/full.svg -------------------------------------------------------------------------------- /doc/img/states/overflow-hidden-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/states/overflow-hidden-alt.svg -------------------------------------------------------------------------------- /doc/img/states/overflow-hidden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/states/overflow-hidden.svg -------------------------------------------------------------------------------- /doc/img/states/overflow-proportional-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/states/overflow-proportional-alt.svg -------------------------------------------------------------------------------- /doc/img/states/overflow-proportional.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/states/overflow-proportional.svg -------------------------------------------------------------------------------- /doc/img/states/quarter-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/states/quarter-alt.svg -------------------------------------------------------------------------------- /doc/img/states/quarter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/img/states/quarter.svg -------------------------------------------------------------------------------- /doc/xob.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/xob.1 -------------------------------------------------------------------------------- /doc/xob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/doc/xob.md -------------------------------------------------------------------------------- /src/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/src/conf.c -------------------------------------------------------------------------------- /src/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/src/conf.h -------------------------------------------------------------------------------- /src/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/src/display.c -------------------------------------------------------------------------------- /src/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/src/display.h -------------------------------------------------------------------------------- /src/display_xlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/src/display_xlib.c -------------------------------------------------------------------------------- /src/display_xrender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/src/display_xrender.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/src/main.h -------------------------------------------------------------------------------- /styles.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florentc/xob/HEAD/styles.cfg --------------------------------------------------------------------------------