├── .github └── FUNDING.yml ├── .gitignore ├── Makefile ├── README.md ├── TODO.md ├── config.def.h ├── config.h ├── config.mk ├── shotkey.1 └── shotkey.c /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/shotkey/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | shotkey 2 | *.o 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/shotkey/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/shotkey/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/shotkey/HEAD/TODO.md -------------------------------------------------------------------------------- /config.def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/shotkey/HEAD/config.def.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/shotkey/HEAD/config.h -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/shotkey/HEAD/config.mk -------------------------------------------------------------------------------- /shotkey.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/shotkey/HEAD/shotkey.1 -------------------------------------------------------------------------------- /shotkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/shotkey/HEAD/shotkey.c --------------------------------------------------------------------------------