├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── aether_client.c ├── aether_protocol.h ├── config.lua ├── flake.lock ├── flake.nix ├── hellcli.c ├── hellwm.c ├── hellwm.desktop └── protocols └── wlr-layer-shell-unstable-v1.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwm/HEAD/README.md -------------------------------------------------------------------------------- /aether_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwm/HEAD/aether_client.c -------------------------------------------------------------------------------- /aether_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwm/HEAD/aether_protocol.h -------------------------------------------------------------------------------- /config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwm/HEAD/config.lua -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwm/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwm/HEAD/flake.nix -------------------------------------------------------------------------------- /hellcli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwm/HEAD/hellcli.c -------------------------------------------------------------------------------- /hellwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwm/HEAD/hellwm.c -------------------------------------------------------------------------------- /hellwm.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwm/HEAD/hellwm.desktop -------------------------------------------------------------------------------- /protocols/wlr-layer-shell-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danihek/hellwm/HEAD/protocols/wlr-layer-shell-unstable-v1.xml --------------------------------------------------------------------------------