diff --git a/linux/gui/kinto-gui.py b/linux/gui/kinto-gui.py old mode 100644 new mode 100755 diff --git a/linux/gui/kinto.desktop b/linux/gui/kinto.desktop old mode 100644 new mode 100755 diff --git a/linux/kinto.py b/linux/kinto.py old mode 100644 new mode 100755 index 66a6f10..4848099 --- a/linux/kinto.py +++ b/linux/kinto.py @@ -258,6 +258,9 @@ define_keymap(None,{ # K("M-Grave") : K("C-Shift-Tab"), # Chromebook/IBM - In-App Tab switching K("Super-Tab"): K("LC-Tab"), # Default not-chromebook K("Super-Shift-Tab"): K("LC-Shift-Tab"), # Default not-chromebook + + # Fn to Alt style remaps + K("RM-Enter"): K("insert"), # Insert # emacs style K("Super-a"): K("Home"), # Beginning of Line @@ -454,9 +457,14 @@ define_keymap(re.compile(termStr, re.IGNORECASE),{ K("LC-Tab") : K("LC-PAGE_DOWN"), K("LC-Shift-Tab") : K("LC-PAGE_UP"), K("LC-Grave") : K("LC-PAGE_UP"), + # K("M-Tab"): pass_through_key, # Default not-xfce4 - Cmd Tab - App Switching Default + # K("RC-Tab"): K("M-Tab"), # Default not-xfce4 - Cmd Tab - App Switching Default + # K("RC-Shift-Tab"): K("M-Shift-Tab"), # Default not-xfce4 - Cmd Tab - App Switching Default + # Cmd Tab - App Switching Default + # K("RC-Tab"): K("RC-backslash"), # xfce4 + # K("RC-Shift-Tab"): K("RC-Shift-backslash"), # xfce4 + # K("RC-Grave"): K("RC-Shift-backslash"), # xfce4 # Converts Cmd to use Ctrl-Shift - K("RC-Tab"): K("RC-F13"), - K("RC-Shift-Tab"): K("RC-Shift-F13"), K("RC-V"): K("C-Shift-V"), K("RC-MINUS"): K("C-Shift-MINUS"), K("RC-EQUAL"): K("C-Shift-EQUAL"), diff --git a/linux/xkeysnail.desktop b/linux/xkeysnail.desktop old mode 100644 new mode 100755 diff --git a/linux/xkeysnail.service b/linux/xkeysnail.service old mode 100644 new mode 100755 diff --git a/windows/kinto.ahk b/windows/kinto.ahk index 2c7648f..e641fa8 100644 --- a/windows/kinto.ahk +++ b/windows/kinto.ahk @@ -270,6 +270,17 @@ GroupAdd, intellij, ahk_exe idea64.exe ; $LWin up::Send {LWin up}{LAlt up}{LCtrl up} ; MacModifiers ; $LAlt up::Send {LWin up}{CapsLock up}{LAlt up}{LCtrl up} ; CB/IBM + !Enter:: + { + if (GetKeyState("RAlt", "P")) { + Send {Insert} + } + else{ + Send {Alt down}{Enter}{Alt up} + } + Return + } + ; Remap Alt+Esc to Break/Pause !Esc::SendInput, {Pause} diff --git a/xkeysnail_service.sh b/xkeysnail_service.sh index e714d7b..3222c99 100755 --- a/xkeysnail_service.sh +++ b/xkeysnail_service.sh @@ -470,8 +470,7 @@ if ! [[ $1 == "5" || $1 == "uninstall" || $1 == "Uninstall" ]]; then xhost +SI:localuser:root git clone --depth 10 https://github.com/rbreaves/xkeysnail.git cd xkeysnail - git pull --depth 10 - git checkout 51c369084e0045a8410d227bab52411bf84fb65b + git checkout kinto giturl=$(git ls-remote --get-url) if [ "$giturl" != "https://github.com/rbreaves/xkeysnail.git" ];then echo -e "\nreplacing xkeysnail with fork...\n" @@ -479,7 +478,7 @@ if ! [[ $1 == "5" || $1 == "uninstall" || $1 == "Uninstall" ]]; then rm -rf ./xkeysnail git clone --depth 10 https://github.com/rbreaves/xkeysnail.git cd xkeysnail - git checkout 51c369084e0045a8410d227bab52411bf84fb65b + git checkout kinto fi sudo pip3 install --upgrade . cd ..