├── .gitignore ├── CHANGES ├── COPYING ├── README.md ├── auto ├── config.mk ├── configure ├── configure.mk ├── makefile ├── tests.mk └── tests │ ├── test_asan.c │ ├── test_cairo_lib.c │ ├── test_cc.c │ ├── test_fc_lib.c │ ├── test_ft_lib.c │ ├── test_x11_lib.c │ ├── test_xcb-ewmh_lib.c │ ├── test_xcb-icccm_lib.c │ ├── test_xcb-randr_lib.c │ ├── test_xcb-util_lib.c │ ├── test_xcb_lib.c │ └── test_xlib_xcb_lib.c ├── conf └── rieman.conf ├── doc ├── rieman.1 ├── s1.png └── s2.png ├── pkg ├── docker │ └── Dockerfile └── rpm │ └── rieman.spec ├── scripts ├── migrate_to_conf.sh └── xml2conf.sh ├── skins ├── blue │ ├── missing_icon.png │ └── rieman_skin.conf ├── bordered │ ├── desktop-active-border.png │ ├── missing_icon.png │ ├── pager-border.png │ ├── rieman_skin.conf │ ├── viewport-active-border.png │ ├── viewport-border.png │ ├── window-active-border.png │ ├── window-attention-border.png │ └── window-border.png ├── default │ ├── missing_icon.png │ └── rieman_skin.conf ├── light │ ├── missing_icon.png │ └── rieman_skin.conf └── transparent │ ├── missing_icon.png │ ├── rieman_skin.conf │ ├── viewport-active-border.png │ └── viewport-border.png ├── src ├── rie_config.c ├── rie_config.h ├── rie_control.c ├── rie_control.h ├── rie_event.c ├── rie_event.h ├── rie_external.c ├── rie_external.h ├── rie_font.c ├── rie_font.h ├── rie_gfx.h ├── rie_gfx_cairo.c ├── rie_log.c ├── rie_log.h ├── rie_render.c ├── rie_render.h ├── rie_skin.c ├── rie_skin.h ├── rie_test.c ├── rie_util.c ├── rie_util.h ├── rie_window.c ├── rie_window.h ├── rie_xcb.c ├── rie_xcb.h ├── rieman.c └── rieman.h └── tests ├── conf ├── bad-2.conf ├── bad-key-2.conf ├── bad-key-3.conf ├── bad-key-4.conf ├── bad-key-5.conf ├── bad-key-validate.conf ├── bad-key.conf ├── bad.conf ├── c1.conf ├── c2.conf ├── c3.conf ├── default.conf ├── noroot.conf ├── skin-1.conf ├── skin-2.conf ├── skin-3.conf ├── skin-bad-key-2.conf ├── skin-bad-key-3.conf └── skin-bad-key.conf ├── rieman_tests.py └── skins ├── skin-1 ├── img.png ├── missing_icon.png └── rieman_skin.conf ├── skin-3 ├── img.png ├── missing_icon.png └── rieman_skin.conf ├── skin-bad-key-2 ├── img.png ├── missing_icon.png └── rieman_skin.conf ├── skin-bad-key-3 ├── img.png ├── missing_icon.png └── rieman_skin.conf └── skin-bad-key ├── img.png ├── missing_icon.png └── rieman_skin.conf /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/CHANGES -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/README.md -------------------------------------------------------------------------------- /auto/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/config.mk -------------------------------------------------------------------------------- /auto/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/configure -------------------------------------------------------------------------------- /auto/configure.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/configure.mk -------------------------------------------------------------------------------- /auto/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/makefile -------------------------------------------------------------------------------- /auto/tests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/tests.mk -------------------------------------------------------------------------------- /auto/tests/test_asan.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /auto/tests/test_cairo_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/tests/test_cairo_lib.c -------------------------------------------------------------------------------- /auto/tests/test_cc.c: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /auto/tests/test_fc_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/tests/test_fc_lib.c -------------------------------------------------------------------------------- /auto/tests/test_ft_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/tests/test_ft_lib.c -------------------------------------------------------------------------------- /auto/tests/test_x11_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/tests/test_x11_lib.c -------------------------------------------------------------------------------- /auto/tests/test_xcb-ewmh_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/tests/test_xcb-ewmh_lib.c -------------------------------------------------------------------------------- /auto/tests/test_xcb-icccm_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/tests/test_xcb-icccm_lib.c -------------------------------------------------------------------------------- /auto/tests/test_xcb-randr_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/tests/test_xcb-randr_lib.c -------------------------------------------------------------------------------- /auto/tests/test_xcb-util_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/tests/test_xcb-util_lib.c -------------------------------------------------------------------------------- /auto/tests/test_xcb_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/tests/test_xcb_lib.c -------------------------------------------------------------------------------- /auto/tests/test_xlib_xcb_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/auto/tests/test_xlib_xcb_lib.c -------------------------------------------------------------------------------- /conf/rieman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/conf/rieman.conf -------------------------------------------------------------------------------- /doc/rieman.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/doc/rieman.1 -------------------------------------------------------------------------------- /doc/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/doc/s1.png -------------------------------------------------------------------------------- /doc/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/doc/s2.png -------------------------------------------------------------------------------- /pkg/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/pkg/docker/Dockerfile -------------------------------------------------------------------------------- /pkg/rpm/rieman.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/pkg/rpm/rieman.spec -------------------------------------------------------------------------------- /scripts/migrate_to_conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/scripts/migrate_to_conf.sh -------------------------------------------------------------------------------- /scripts/xml2conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/scripts/xml2conf.sh -------------------------------------------------------------------------------- /skins/blue/missing_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/blue/missing_icon.png -------------------------------------------------------------------------------- /skins/blue/rieman_skin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/blue/rieman_skin.conf -------------------------------------------------------------------------------- /skins/bordered/desktop-active-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/bordered/desktop-active-border.png -------------------------------------------------------------------------------- /skins/bordered/missing_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/bordered/missing_icon.png -------------------------------------------------------------------------------- /skins/bordered/pager-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/bordered/pager-border.png -------------------------------------------------------------------------------- /skins/bordered/rieman_skin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/bordered/rieman_skin.conf -------------------------------------------------------------------------------- /skins/bordered/viewport-active-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/bordered/viewport-active-border.png -------------------------------------------------------------------------------- /skins/bordered/viewport-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/bordered/viewport-border.png -------------------------------------------------------------------------------- /skins/bordered/window-active-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/bordered/window-active-border.png -------------------------------------------------------------------------------- /skins/bordered/window-attention-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/bordered/window-attention-border.png -------------------------------------------------------------------------------- /skins/bordered/window-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/bordered/window-border.png -------------------------------------------------------------------------------- /skins/default/missing_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/default/missing_icon.png -------------------------------------------------------------------------------- /skins/default/rieman_skin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/default/rieman_skin.conf -------------------------------------------------------------------------------- /skins/light/missing_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/light/missing_icon.png -------------------------------------------------------------------------------- /skins/light/rieman_skin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/light/rieman_skin.conf -------------------------------------------------------------------------------- /skins/transparent/missing_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/transparent/missing_icon.png -------------------------------------------------------------------------------- /skins/transparent/rieman_skin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/transparent/rieman_skin.conf -------------------------------------------------------------------------------- /skins/transparent/viewport-active-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/transparent/viewport-active-border.png -------------------------------------------------------------------------------- /skins/transparent/viewport-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/skins/transparent/viewport-border.png -------------------------------------------------------------------------------- /src/rie_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_config.c -------------------------------------------------------------------------------- /src/rie_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_config.h -------------------------------------------------------------------------------- /src/rie_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_control.c -------------------------------------------------------------------------------- /src/rie_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_control.h -------------------------------------------------------------------------------- /src/rie_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_event.c -------------------------------------------------------------------------------- /src/rie_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_event.h -------------------------------------------------------------------------------- /src/rie_external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_external.c -------------------------------------------------------------------------------- /src/rie_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_external.h -------------------------------------------------------------------------------- /src/rie_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_font.c -------------------------------------------------------------------------------- /src/rie_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_font.h -------------------------------------------------------------------------------- /src/rie_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_gfx.h -------------------------------------------------------------------------------- /src/rie_gfx_cairo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_gfx_cairo.c -------------------------------------------------------------------------------- /src/rie_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_log.c -------------------------------------------------------------------------------- /src/rie_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_log.h -------------------------------------------------------------------------------- /src/rie_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_render.c -------------------------------------------------------------------------------- /src/rie_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_render.h -------------------------------------------------------------------------------- /src/rie_skin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_skin.c -------------------------------------------------------------------------------- /src/rie_skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_skin.h -------------------------------------------------------------------------------- /src/rie_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_test.c -------------------------------------------------------------------------------- /src/rie_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_util.c -------------------------------------------------------------------------------- /src/rie_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_util.h -------------------------------------------------------------------------------- /src/rie_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_window.c -------------------------------------------------------------------------------- /src/rie_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_window.h -------------------------------------------------------------------------------- /src/rie_xcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_xcb.c -------------------------------------------------------------------------------- /src/rie_xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rie_xcb.h -------------------------------------------------------------------------------- /src/rieman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rieman.c -------------------------------------------------------------------------------- /src/rieman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/src/rieman.h -------------------------------------------------------------------------------- /tests/conf/bad-2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/bad-2.conf -------------------------------------------------------------------------------- /tests/conf/bad-key-2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/bad-key-2.conf -------------------------------------------------------------------------------- /tests/conf/bad-key-3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/bad-key-3.conf -------------------------------------------------------------------------------- /tests/conf/bad-key-4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/bad-key-4.conf -------------------------------------------------------------------------------- /tests/conf/bad-key-5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/bad-key-5.conf -------------------------------------------------------------------------------- /tests/conf/bad-key-validate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/bad-key-validate.conf -------------------------------------------------------------------------------- /tests/conf/bad-key.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/bad-key.conf -------------------------------------------------------------------------------- /tests/conf/bad.conf: -------------------------------------------------------------------------------- 1 | # bad conf 2 | \ 3 | -------------------------------------------------------------------------------- /tests/conf/c1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/c1.conf -------------------------------------------------------------------------------- /tests/conf/c2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/c2.conf -------------------------------------------------------------------------------- /tests/conf/c3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/c3.conf -------------------------------------------------------------------------------- /tests/conf/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/default.conf -------------------------------------------------------------------------------- /tests/conf/noroot.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conf/skin-1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/skin-1.conf -------------------------------------------------------------------------------- /tests/conf/skin-2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/skin-2.conf -------------------------------------------------------------------------------- /tests/conf/skin-3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/skin-3.conf -------------------------------------------------------------------------------- /tests/conf/skin-bad-key-2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/skin-bad-key-2.conf -------------------------------------------------------------------------------- /tests/conf/skin-bad-key-3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/skin-bad-key-3.conf -------------------------------------------------------------------------------- /tests/conf/skin-bad-key.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/conf/skin-bad-key.conf -------------------------------------------------------------------------------- /tests/rieman_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/rieman_tests.py -------------------------------------------------------------------------------- /tests/skins/skin-1/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-1/img.png -------------------------------------------------------------------------------- /tests/skins/skin-1/missing_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-1/missing_icon.png -------------------------------------------------------------------------------- /tests/skins/skin-1/rieman_skin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-1/rieman_skin.conf -------------------------------------------------------------------------------- /tests/skins/skin-3/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-3/img.png -------------------------------------------------------------------------------- /tests/skins/skin-3/missing_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-3/missing_icon.png -------------------------------------------------------------------------------- /tests/skins/skin-3/rieman_skin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-3/rieman_skin.conf -------------------------------------------------------------------------------- /tests/skins/skin-bad-key-2/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-bad-key-2/img.png -------------------------------------------------------------------------------- /tests/skins/skin-bad-key-2/missing_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-bad-key-2/missing_icon.png -------------------------------------------------------------------------------- /tests/skins/skin-bad-key-2/rieman_skin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-bad-key-2/rieman_skin.conf -------------------------------------------------------------------------------- /tests/skins/skin-bad-key-3/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-bad-key-3/img.png -------------------------------------------------------------------------------- /tests/skins/skin-bad-key-3/missing_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-bad-key-3/missing_icon.png -------------------------------------------------------------------------------- /tests/skins/skin-bad-key-3/rieman_skin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-bad-key-3/rieman_skin.conf -------------------------------------------------------------------------------- /tests/skins/skin-bad-key/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-bad-key/img.png -------------------------------------------------------------------------------- /tests/skins/skin-bad-key/missing_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-bad-key/missing_icon.png -------------------------------------------------------------------------------- /tests/skins/skin-bad-key/rieman_skin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vl409/rieman/HEAD/tests/skins/skin-bad-key/rieman_skin.conf --------------------------------------------------------------------------------