- Initial commit with readme and install.py

This commit is contained in:
Ben Reaves
2019-07-26 20:37:52 -05:00
parent 572c8027a3
commit f1731134a3
2 changed files with 50 additions and 0 deletions

29
README.md Normal file
View File

@@ -0,0 +1,29 @@
# Kinto
[![GitHub release](https://img.shields.io/github/release/rbreaves/kinto.svg)](https://github.com/rbreaves/kinto/releases)
- Fix the damn keyboard. -
No more spiderhands for programmers and developers. This project is only about one thing, remapping the control key to be next to your space bar no matter what keyboard you swap into your workflow and to do it without mastering xmodmap, setxkbmap or modifying system files.
## How to install
1. clone this repo
```
```
2. Install via shell file
```
```
3. Follow the prompts and the script will guide you through the rest of the setup.
## Troubleshooting
If your keyboard is not being autodetected and configured then please run `xinput list`, if you are on linux, and copy the output into a ticket under issues.
## Contributing
I welcome any and all contributors who want to contribute something to this project.
## License
GPL v2

21
install.py Executable file
View File

@@ -0,0 +1,21 @@
import os, platform, sysconfig, sys
yellow = "\033[1;33m"
green = "\033[0;32m"
red = "\033[1;31m"
reset = "\033[0;0m"
platform_name = platform.system()
# print sysconfig.get_platform()
sys.stdout.write(yellow)
cloud = '\u2601'.decode('unicode-escape')
circle = '\u25CE'.decode('unicode-escape')
heart = '\u2765'.decode('unicode-escape')
# bang = '\u1F589'.decode('unicode-escape')
print " K!nt" + circle
sys.stdout.write(reset)
print " - F!x the damn keyb" + circle + "ard. - "
print
print " You are using: " + platform_name