├── ChangeLog ├── LICENSE ├── README.md ├── assets └── ss_2024-01-18.png ├── config ├── autostart.sh └── configrc ├── include ├── action.h ├── client.h ├── globals.h ├── input.h ├── ipc.h ├── layer.h ├── output.h └── server.h ├── meson.build ├── meson_options.txt ├── protocols ├── dwl-ipc-unstable-v2.xml ├── wlr-layer-shell-unstable-v1.xml └── wlr-output-power-management-unstable-v1.xml ├── simplewc.desktop └── src ├── action.c ├── client.c ├── config.c ├── input.c ├── ipc.c ├── layer.c ├── main.c ├── output.c └── server.c /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/README.md -------------------------------------------------------------------------------- /assets/ss_2024-01-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/assets/ss_2024-01-18.png -------------------------------------------------------------------------------- /config/autostart.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #waybar & 4 | 5 | foot & 6 | -------------------------------------------------------------------------------- /config/configrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/config/configrc -------------------------------------------------------------------------------- /include/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/include/action.h -------------------------------------------------------------------------------- /include/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/include/client.h -------------------------------------------------------------------------------- /include/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/include/globals.h -------------------------------------------------------------------------------- /include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/include/input.h -------------------------------------------------------------------------------- /include/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/include/ipc.h -------------------------------------------------------------------------------- /include/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/include/layer.h -------------------------------------------------------------------------------- /include/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/include/output.h -------------------------------------------------------------------------------- /include/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/include/server.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/meson_options.txt -------------------------------------------------------------------------------- /protocols/dwl-ipc-unstable-v2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/protocols/dwl-ipc-unstable-v2.xml -------------------------------------------------------------------------------- /protocols/wlr-layer-shell-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/protocols/wlr-layer-shell-unstable-v1.xml -------------------------------------------------------------------------------- /protocols/wlr-output-power-management-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/protocols/wlr-output-power-management-unstable-v1.xml -------------------------------------------------------------------------------- /simplewc.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/simplewc.desktop -------------------------------------------------------------------------------- /src/action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/src/action.c -------------------------------------------------------------------------------- /src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/src/client.c -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/src/config.c -------------------------------------------------------------------------------- /src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/src/input.c -------------------------------------------------------------------------------- /src/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/src/ipc.c -------------------------------------------------------------------------------- /src/layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/src/layer.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/src/main.c -------------------------------------------------------------------------------- /src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/src/output.c -------------------------------------------------------------------------------- /src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcirick/simplewc/HEAD/src/server.c --------------------------------------------------------------------------------