├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── Screenshot.png ├── distribution.ahk ├── html └── index.html ├── iwck.ico ├── logo ├── iwck-heart.png ├── iwck-heart.svg ├── iwck.png ├── iwck.svg └── logo.png ├── main.ahk └── meta.ahk /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ref 2 | *.exe 3 | dist 4 | compile_prop.ahk 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/Screenshot.png -------------------------------------------------------------------------------- /distribution.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/distribution.ahk -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/html/index.html -------------------------------------------------------------------------------- /iwck.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/iwck.ico -------------------------------------------------------------------------------- /logo/iwck-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/logo/iwck-heart.png -------------------------------------------------------------------------------- /logo/iwck-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/logo/iwck-heart.svg -------------------------------------------------------------------------------- /logo/iwck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/logo/iwck.png -------------------------------------------------------------------------------- /logo/iwck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/logo/iwck.svg -------------------------------------------------------------------------------- /logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/logo/logo.png -------------------------------------------------------------------------------- /main.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/main.ahk -------------------------------------------------------------------------------- /meta.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nigh/I-wanna-clean-keyboard/HEAD/meta.ahk --------------------------------------------------------------------------------