├── .gitignore ├── LICENSE ├── README.md ├── SA.py ├── cherry.py ├── driver.py ├── dummy.py ├── keycaps_env.yml ├── playground.py ├── reference └── cherry.svg ├── screenshots ├── Cherry.png └── SA.png └── units.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CutRightHand/KeyCaps/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CutRightHand/KeyCaps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CutRightHand/KeyCaps/HEAD/README.md -------------------------------------------------------------------------------- /SA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CutRightHand/KeyCaps/HEAD/SA.py -------------------------------------------------------------------------------- /cherry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CutRightHand/KeyCaps/HEAD/cherry.py -------------------------------------------------------------------------------- /driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CutRightHand/KeyCaps/HEAD/driver.py -------------------------------------------------------------------------------- /dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CutRightHand/KeyCaps/HEAD/dummy.py -------------------------------------------------------------------------------- /keycaps_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CutRightHand/KeyCaps/HEAD/keycaps_env.yml -------------------------------------------------------------------------------- /playground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CutRightHand/KeyCaps/HEAD/playground.py -------------------------------------------------------------------------------- /reference/cherry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CutRightHand/KeyCaps/HEAD/reference/cherry.svg -------------------------------------------------------------------------------- /screenshots/Cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CutRightHand/KeyCaps/HEAD/screenshots/Cherry.png -------------------------------------------------------------------------------- /screenshots/SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CutRightHand/KeyCaps/HEAD/screenshots/SA.png -------------------------------------------------------------------------------- /units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CutRightHand/KeyCaps/HEAD/units.py --------------------------------------------------------------------------------