├── LICENSE ├── Makefile ├── README.md ├── client.c ├── coma.1 ├── coma.c ├── coma.h ├── config.c ├── frame.c ├── scripts ├── coma-cmd └── coma-remote └── wm.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorisvink/coma/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorisvink/coma/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorisvink/coma/HEAD/README.md -------------------------------------------------------------------------------- /client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorisvink/coma/HEAD/client.c -------------------------------------------------------------------------------- /coma.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorisvink/coma/HEAD/coma.1 -------------------------------------------------------------------------------- /coma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorisvink/coma/HEAD/coma.c -------------------------------------------------------------------------------- /coma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorisvink/coma/HEAD/coma.h -------------------------------------------------------------------------------- /config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorisvink/coma/HEAD/config.c -------------------------------------------------------------------------------- /frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorisvink/coma/HEAD/frame.c -------------------------------------------------------------------------------- /scripts/coma-cmd: -------------------------------------------------------------------------------- 1 | #!/bin/zsh 2 | 3 | print -Pn "\e]0;%m;%d;$1\a" 4 | 5 | $@ 6 | -------------------------------------------------------------------------------- /scripts/coma-remote: -------------------------------------------------------------------------------- 1 | #!/bin/zsh 2 | 3 | ssh $1 "zsh -c \"cd $2 && ${@:3}\"" 4 | -------------------------------------------------------------------------------- /wm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorisvink/coma/HEAD/wm.c --------------------------------------------------------------------------------