├── .gitignore ├── LICENSE ├── Makefile.am ├── README.md ├── configure.ac ├── img ├── i3help.gif └── i3help.png ├── main.c ├── test-config └── test-config-long /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennular/i3help/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennular/i3help/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennular/i3help/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennular/i3help/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennular/i3help/HEAD/configure.ac -------------------------------------------------------------------------------- /img/i3help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennular/i3help/HEAD/img/i3help.gif -------------------------------------------------------------------------------- /img/i3help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennular/i3help/HEAD/img/i3help.png -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennular/i3help/HEAD/main.c -------------------------------------------------------------------------------- /test-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennular/i3help/HEAD/test-config -------------------------------------------------------------------------------- /test-config-long: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennular/i3help/HEAD/test-config-long --------------------------------------------------------------------------------