├── .gitignore ├── .splintrc ├── .travis.yml ├── CONTRIBUTING.md ├── Doxyfile ├── LICENSE ├── Makefile ├── README.md ├── examples ├── bar.sh ├── howmrc ├── sxhkdrc_floating ├── sxhkdrc_focus ├── sxhkdrc_normal └── xinitrc ├── howm.xsession.desktop └── src ├── client.c ├── client.h ├── handler.c ├── handler.h ├── helper.h ├── howm.c ├── howm.h ├── ipc.c ├── ipc.h ├── layout.c ├── layout.h ├── location.c ├── location.h ├── monitor.c ├── monitor.h ├── op.c ├── op.h ├── scratchpad.c ├── scratchpad.h ├── types.h ├── workspace.c ├── workspace.h ├── xcb_help.c └── xcb_help.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/.gitignore -------------------------------------------------------------------------------- /.splintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/.splintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/README.md -------------------------------------------------------------------------------- /examples/bar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/examples/bar.sh -------------------------------------------------------------------------------- /examples/howmrc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cottage -c border_px 4 4 | -------------------------------------------------------------------------------- /examples/sxhkdrc_floating: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/examples/sxhkdrc_floating -------------------------------------------------------------------------------- /examples/sxhkdrc_focus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/examples/sxhkdrc_focus -------------------------------------------------------------------------------- /examples/sxhkdrc_normal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/examples/sxhkdrc_normal -------------------------------------------------------------------------------- /examples/xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/examples/xinitrc -------------------------------------------------------------------------------- /howm.xsession.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/howm.xsession.desktop -------------------------------------------------------------------------------- /src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/client.c -------------------------------------------------------------------------------- /src/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/client.h -------------------------------------------------------------------------------- /src/handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/handler.c -------------------------------------------------------------------------------- /src/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/handler.h -------------------------------------------------------------------------------- /src/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/helper.h -------------------------------------------------------------------------------- /src/howm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/howm.c -------------------------------------------------------------------------------- /src/howm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/howm.h -------------------------------------------------------------------------------- /src/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/ipc.c -------------------------------------------------------------------------------- /src/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/ipc.h -------------------------------------------------------------------------------- /src/layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/layout.c -------------------------------------------------------------------------------- /src/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/layout.h -------------------------------------------------------------------------------- /src/location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/location.c -------------------------------------------------------------------------------- /src/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/location.h -------------------------------------------------------------------------------- /src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/monitor.c -------------------------------------------------------------------------------- /src/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/monitor.h -------------------------------------------------------------------------------- /src/op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/op.c -------------------------------------------------------------------------------- /src/op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/op.h -------------------------------------------------------------------------------- /src/scratchpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/scratchpad.c -------------------------------------------------------------------------------- /src/scratchpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/scratchpad.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/types.h -------------------------------------------------------------------------------- /src/workspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/workspace.c -------------------------------------------------------------------------------- /src/workspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/workspace.h -------------------------------------------------------------------------------- /src/xcb_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/xcb_help.c -------------------------------------------------------------------------------- /src/xcb_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarveyHunt/howm/HEAD/src/xcb_help.h --------------------------------------------------------------------------------