├── .gitattributes ├── LICENSE ├── Makefile ├── README.md ├── flake.lock ├── flake.nix ├── protocols └── wlr-layer-shell-unstable-v1.xml └── src ├── main.c ├── render.c ├── render.h ├── shm.c ├── shm.h ├── state.c ├── state.h ├── wayland.c └── wayland.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/flake.nix -------------------------------------------------------------------------------- /protocols/wlr-layer-shell-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/protocols/wlr-layer-shell-unstable-v1.xml -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/src/main.c -------------------------------------------------------------------------------- /src/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/src/render.c -------------------------------------------------------------------------------- /src/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/src/render.h -------------------------------------------------------------------------------- /src/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/src/shm.c -------------------------------------------------------------------------------- /src/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/src/shm.h -------------------------------------------------------------------------------- /src/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/src/state.c -------------------------------------------------------------------------------- /src/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/src/state.h -------------------------------------------------------------------------------- /src/wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/src/wayland.c -------------------------------------------------------------------------------- /src/wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pubfnmain/ergo/HEAD/src/wayland.h --------------------------------------------------------------------------------