mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-02 09:06:40 +02:00
- Initial commit with readme and install.py
This commit is contained in:
29
README.md
Normal file
29
README.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# Kinto
|
||||
[](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
21
install.py
Executable 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
|
Reference in New Issue
Block a user