├── .gitmodules ├── bar ├── excalibar.cfg ├── makefile └── src │ └── excalibar.c ├── lib ├── excalibar.pc ├── makefile └── src │ ├── draw.c │ ├── draw.h │ ├── excalibar.h │ ├── font.c │ ├── font.h │ ├── tag.c │ ├── tag.h │ ├── win.c │ └── win.h ├── license.md ├── plugins ├── alsa │ ├── makefile │ └── src │ │ └── alsa.c ├── click │ ├── makefile │ └── src │ │ └── click.c ├── common │ └── plugin_config.h ├── cpu │ ├── makefile │ └── src │ │ └── cpu.c ├── example │ ├── makefile │ └── src │ │ └── example.c ├── makefile ├── mpdcontrols │ ├── makefile │ └── src │ │ └── mpdcontrols.c ├── mpdmonitor │ ├── makefile │ └── src │ │ └── mpdmonitor.c ├── ram │ ├── makefile │ └── src │ │ └── ram.c ├── refresh │ ├── makefile │ └── src │ │ └── refresh.c ├── tasks │ ├── makefile │ └── src │ │ └── tasks.c ├── time │ ├── makefile │ └── src │ │ └── time.c └── workspaces │ ├── makefile │ └── src │ └── workspaces.c └── readme.md /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/.gitmodules -------------------------------------------------------------------------------- /bar/excalibar.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/bar/excalibar.cfg -------------------------------------------------------------------------------- /bar/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/bar/makefile -------------------------------------------------------------------------------- /bar/src/excalibar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/bar/src/excalibar.c -------------------------------------------------------------------------------- /lib/excalibar.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/lib/excalibar.pc -------------------------------------------------------------------------------- /lib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/lib/makefile -------------------------------------------------------------------------------- /lib/src/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/lib/src/draw.c -------------------------------------------------------------------------------- /lib/src/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/lib/src/draw.h -------------------------------------------------------------------------------- /lib/src/excalibar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/lib/src/excalibar.h -------------------------------------------------------------------------------- /lib/src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/lib/src/font.c -------------------------------------------------------------------------------- /lib/src/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/lib/src/font.h -------------------------------------------------------------------------------- /lib/src/tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/lib/src/tag.c -------------------------------------------------------------------------------- /lib/src/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/lib/src/tag.h -------------------------------------------------------------------------------- /lib/src/win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/lib/src/win.c -------------------------------------------------------------------------------- /lib/src/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/lib/src/win.h -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/license.md -------------------------------------------------------------------------------- /plugins/alsa/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/alsa/makefile -------------------------------------------------------------------------------- /plugins/alsa/src/alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/alsa/src/alsa.c -------------------------------------------------------------------------------- /plugins/click/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/click/makefile -------------------------------------------------------------------------------- /plugins/click/src/click.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/click/src/click.c -------------------------------------------------------------------------------- /plugins/common/plugin_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/common/plugin_config.h -------------------------------------------------------------------------------- /plugins/cpu/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/cpu/makefile -------------------------------------------------------------------------------- /plugins/cpu/src/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/cpu/src/cpu.c -------------------------------------------------------------------------------- /plugins/example/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/example/makefile -------------------------------------------------------------------------------- /plugins/example/src/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/example/src/example.c -------------------------------------------------------------------------------- /plugins/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/makefile -------------------------------------------------------------------------------- /plugins/mpdcontrols/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/mpdcontrols/makefile -------------------------------------------------------------------------------- /plugins/mpdcontrols/src/mpdcontrols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/mpdcontrols/src/mpdcontrols.c -------------------------------------------------------------------------------- /plugins/mpdmonitor/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/mpdmonitor/makefile -------------------------------------------------------------------------------- /plugins/mpdmonitor/src/mpdmonitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/mpdmonitor/src/mpdmonitor.c -------------------------------------------------------------------------------- /plugins/ram/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/ram/makefile -------------------------------------------------------------------------------- /plugins/ram/src/ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/ram/src/ram.c -------------------------------------------------------------------------------- /plugins/refresh/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/refresh/makefile -------------------------------------------------------------------------------- /plugins/refresh/src/refresh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/refresh/src/refresh.c -------------------------------------------------------------------------------- /plugins/tasks/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/tasks/makefile -------------------------------------------------------------------------------- /plugins/tasks/src/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/tasks/src/tasks.c -------------------------------------------------------------------------------- /plugins/time/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/time/makefile -------------------------------------------------------------------------------- /plugins/time/src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/time/src/time.c -------------------------------------------------------------------------------- /plugins/workspaces/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/workspaces/makefile -------------------------------------------------------------------------------- /plugins/workspaces/src/workspaces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/plugins/workspaces/src/workspaces.c -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullgemm/excalibar/HEAD/readme.md --------------------------------------------------------------------------------