├── .gitignore ├── LICENSE ├── README.md ├── completions └── greetd-mini-wl-greeter ├── doc └── greetd-mini-wl-greeter.1.scd ├── meson.build ├── meson_options.txt ├── screenshot.png ├── screenshot_vertical.png ├── shaders ├── frag.frag └── vert.vert └── src ├── client.h ├── color.c ├── color.h ├── egl.c ├── egl.h ├── entry.c ├── entry.h ├── gl.c ├── gl.h ├── greetd.c ├── greetd.h ├── image.c ├── image.h ├── ipc.c ├── ipc.h ├── log.c ├── log.h ├── main.c ├── nelem.h ├── surface.c └── surface.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/README.md -------------------------------------------------------------------------------- /completions/greetd-mini-wl-greeter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/completions/greetd-mini-wl-greeter -------------------------------------------------------------------------------- /doc/greetd-mini-wl-greeter.1.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/doc/greetd-mini-wl-greeter.1.scd -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/meson_options.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/screenshot.png -------------------------------------------------------------------------------- /screenshot_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/screenshot_vertical.png -------------------------------------------------------------------------------- /shaders/frag.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/shaders/frag.frag -------------------------------------------------------------------------------- /shaders/vert.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/shaders/vert.vert -------------------------------------------------------------------------------- /src/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/client.h -------------------------------------------------------------------------------- /src/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/color.c -------------------------------------------------------------------------------- /src/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/color.h -------------------------------------------------------------------------------- /src/egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/egl.c -------------------------------------------------------------------------------- /src/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/egl.h -------------------------------------------------------------------------------- /src/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/entry.c -------------------------------------------------------------------------------- /src/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/entry.h -------------------------------------------------------------------------------- /src/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/gl.c -------------------------------------------------------------------------------- /src/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/gl.h -------------------------------------------------------------------------------- /src/greetd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/greetd.c -------------------------------------------------------------------------------- /src/greetd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/greetd.h -------------------------------------------------------------------------------- /src/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/image.c -------------------------------------------------------------------------------- /src/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/image.h -------------------------------------------------------------------------------- /src/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/ipc.c -------------------------------------------------------------------------------- /src/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/ipc.h -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/log.c -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/log.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/main.c -------------------------------------------------------------------------------- /src/nelem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/nelem.h -------------------------------------------------------------------------------- /src/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/surface.c -------------------------------------------------------------------------------- /src/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philj56/greetd-mini-wl-greeter/HEAD/src/surface.h --------------------------------------------------------------------------------