mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-05 18:38:26 +02:00
- Updated readme w/ upgrade info. Closes ticket #60
This commit is contained in:
79
README.md
79
README.md
@@ -63,6 +63,51 @@ To Uninstall Kinto
|
|||||||
./uninstall.sh
|
./uninstall.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## How to Upgrade Kinto
|
||||||
|
|
||||||
|
Simply bring down the latest in either the master branch or dev, but dev is sometimes in flux as new features are being developed. Then you can re-run the setup.py installer, it will stop the service and re-install Kinto.
|
||||||
|
|
||||||
|
Note: If you have made any custom changes to ~/.xkb or ~/.config/kinto then you will need to backup or rename those directories before running an update.
|
||||||
|
|
||||||
|
```
|
||||||
|
git pull origin master
|
||||||
|
./setup.py
|
||||||
|
```
|
||||||
|
|
||||||
|
## How to Control Kinto
|
||||||
|
|
||||||
|
Under systemd this is how you control Kinto.
|
||||||
|
|
||||||
|
Status
|
||||||
|
```
|
||||||
|
systemctl --user status keyswap
|
||||||
|
```
|
||||||
|
|
||||||
|
Stop (your keymap will return to normal)
|
||||||
|
```
|
||||||
|
systemctl --user stop keyswap
|
||||||
|
```
|
||||||
|
|
||||||
|
Start
|
||||||
|
```
|
||||||
|
systemctl --user start keyswap
|
||||||
|
```
|
||||||
|
|
||||||
|
Restart
|
||||||
|
```
|
||||||
|
systemctl --user restart keyswap
|
||||||
|
```
|
||||||
|
|
||||||
|
Enable
|
||||||
|
```
|
||||||
|
systemctl --user enable keyswap
|
||||||
|
```
|
||||||
|
|
||||||
|
Disable
|
||||||
|
```
|
||||||
|
systemctl --user disable keyswap
|
||||||
|
```
|
||||||
|
|
||||||
## How to Add Setxkbmap Option inside Kinto
|
## How to Add Setxkbmap Option inside Kinto
|
||||||
|
|
||||||
To summarize you'll need to pull the partial out of the symbols file the option resides in and then add that to the mac_gui file and lastly reference it in the keymap file(s) you want it in.
|
To summarize you'll need to pull the partial out of the symbols file the option resides in and then add that to the mac_gui file and lastly reference it in the keymap file(s) you want it in.
|
||||||
@@ -354,40 +399,6 @@ You can also add additional Desktop Environment related tweaks to user_config.js
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## How to Control Kinto
|
|
||||||
|
|
||||||
Under systemd this is how you control Kinto.
|
|
||||||
|
|
||||||
Status
|
|
||||||
```
|
|
||||||
systemctl --user status keyswap
|
|
||||||
```
|
|
||||||
|
|
||||||
Stop (your keymap will return to normal)
|
|
||||||
```
|
|
||||||
systemctl --user stop keyswap
|
|
||||||
```
|
|
||||||
|
|
||||||
Start
|
|
||||||
```
|
|
||||||
systemctl --user start keyswap
|
|
||||||
```
|
|
||||||
|
|
||||||
Restart
|
|
||||||
```
|
|
||||||
systemctl --user restart keyswap
|
|
||||||
```
|
|
||||||
|
|
||||||
Enable
|
|
||||||
```
|
|
||||||
systemctl --user enable keyswap
|
|
||||||
```
|
|
||||||
|
|
||||||
Disable
|
|
||||||
```
|
|
||||||
systemctl --user disable keyswap
|
|
||||||
```
|
|
||||||
|
|
||||||
## Learning macOS style hotkeys on Linux
|
## Learning macOS style hotkeys on Linux
|
||||||
|
|
||||||
You can use websites like https://www.shortcutfoo.com in Google Chrome while using the terminal style keymap, but Firefox is not compatible due to detecting "cmd" as keycode 224. Chrome detects Win/Super/Cmd as keycode 91 on all OS's.
|
You can use websites like https://www.shortcutfoo.com in Google Chrome while using the terminal style keymap, but Firefox is not compatible due to detecting "cmd" as keycode 224. Chrome detects Win/Super/Cmd as keycode 91 on all OS's.
|
||||||
|
Reference in New Issue
Block a user