├── .gitignore ├── GNUmakefile ├── LICENSE ├── README.md ├── com.debounceMac.app.plist └── debounce.m /.gitignore: -------------------------------------------------------------------------------- 1 | /debounce 2 | -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/debounce-mac/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/debounce-mac/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/debounce-mac/HEAD/README.md -------------------------------------------------------------------------------- /com.debounceMac.app.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/debounce-mac/HEAD/com.debounceMac.app.plist -------------------------------------------------------------------------------- /debounce.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toothbrush/debounce-mac/HEAD/debounce.m --------------------------------------------------------------------------------