├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cat.png ├── main.c ├── shm.c └── shm.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/hello-wayland/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/hello-wayland/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/hello-wayland/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/hello-wayland/HEAD/README.md -------------------------------------------------------------------------------- /cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/hello-wayland/HEAD/cat.png -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/hello-wayland/HEAD/main.c -------------------------------------------------------------------------------- /shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/hello-wayland/HEAD/shm.c -------------------------------------------------------------------------------- /shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/hello-wayland/HEAD/shm.h --------------------------------------------------------------------------------