├── .gitignore ├── LICENSE ├── README.md ├── dist └── PKGBUILD ├── main.c └── meson.build /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowrep/wljoywake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowrep/wljoywake/HEAD/README.md -------------------------------------------------------------------------------- /dist/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowrep/wljoywake/HEAD/dist/PKGBUILD -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowrep/wljoywake/HEAD/main.c -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowrep/wljoywake/HEAD/meson.build --------------------------------------------------------------------------------