├── .github └── workflows │ ├── build-client.yml │ └── upload-apk.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── client.c └── wayland-protocols.sh /.github/workflows/build-client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xtr126/wayland-getevent/HEAD/.github/workflows/build-client.yml -------------------------------------------------------------------------------- /.github/workflows/upload-apk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xtr126/wayland-getevent/HEAD/.github/workflows/upload-apk.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xtr126/wayland-getevent/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xtr126/wayland-getevent/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xtr126/wayland-getevent/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xtr126/wayland-getevent/HEAD/README.md -------------------------------------------------------------------------------- /client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xtr126/wayland-getevent/HEAD/client.c -------------------------------------------------------------------------------- /wayland-protocols.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xtr126/wayland-getevent/HEAD/wayland-protocols.sh --------------------------------------------------------------------------------