mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-13 14:19:15 +02:00
- Improved Windows UX, Added System Tray, Kinto icon assets
This commit is contained in:
22
windows/toggle_kb.bat
Normal file
22
windows/toggle_kb.bat
Normal file
@@ -0,0 +1,22 @@
|
||||
@echo off
|
||||
|
||||
IF "%1"=="mac" goto mac
|
||||
IF "%1"=="win" goto win
|
||||
|
||||
echo Not found.
|
||||
goto commonexit
|
||||
|
||||
:win
|
||||
perl -pi -e "s/(; )(.*)(; WinModifiers)/$2$3/g" "%userprofile%\.kinto\kinto.ahk"
|
||||
perl -pi -e "s/^(?!;)(.*)(; MacModifiers)/; $1$2/gm" "%userprofile%\.kinto\kinto.ahk"
|
||||
"C:\Program Files\AutoHotkey\AutoHotkey.exe" "%userprofile%\.kinto\kinto.ahk"
|
||||
goto commonexit
|
||||
|
||||
:mac
|
||||
perl -pi -e "s/(; )(.*)(; MacModifiers)/$2$3/g" "%userprofile%\.kinto\kinto.ahk"
|
||||
perl -pi -e "s/^(?!;)(.*)(; WinModifiers)/; $1$2/gm" "%userprofile%\.kinto\kinto.ahk"
|
||||
"C:\Program Files\AutoHotkey\AutoHotkey.exe" "%userprofile%\.kinto\kinto.ahk"
|
||||
goto commonexit
|
||||
|
||||
:commonexit
|
||||
exit
|
Reference in New Issue
Block a user