From 1fb5bf2a4b4961ce6f454d284d4c6a5f9d22246c Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Sun, 12 Jul 2020 21:10:10 -0500 Subject: [PATCH 1/2] - Added budgie message for user to reset cmd-tab --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index b91d615..f7a3024 100755 --- a/setup.py +++ b/setup.py @@ -265,6 +265,8 @@ def setShortcuts(): cmdline('dconf load /org/gnome/desktop/wm/keybindings/ < tempkb.conf') cmdline('dconf load /org/gnome/mutter/keybindings/ < tempmt.conf') cmdline('sleep 1 && rm -f ./tempkb.conf;rm -f ./tempmt.conf') + if dename == "budgie": + print('** Make sure to open Keyboard settings & reset "switch applications" to cmd+tab **') # cmdline('dconf update') def Uninstall(): From f922caff7875b71934c00ea9d0d257bb5e25a40c Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Tue, 21 Jul 2020 17:42:42 -0500 Subject: [PATCH 2/2] - Added Beginning and End of line for terminals on Windows 10 more generically --- windows/kinto.ahk | 33 +++++++++++---------------------- 1 file changed, 11 insertions(+), 22 deletions(-) diff --git a/windows/kinto.ahk b/windows/kinto.ahk index b11d723..db38c49 100644 --- a/windows/kinto.ahk +++ b/windows/kinto.ahk @@ -374,6 +374,17 @@ $^+Right::Send +{End} #If #IfWinActive ahk_group terminals + + ; End of Line + #e:: + Send {End} + return + + ; Beginning of Line + #a:: + Send {Home} + return + ; Copy ^c:: SetKeyDelay -1 @@ -422,28 +433,6 @@ $^+Right::Send +{End} } return - ; End of Line - ^e:: - SetKeyDelay -1 - Send {Blind}{e DownTemp} - return - - ^e up:: - SetKeyDelay -1 - Send {Blind}{e Up} - return - - ; Beginning of Line - ^a:: - SetKeyDelay -1 - Send {Blind}{a DownTemp} - return - - ^a up:: - SetKeyDelay -1 - Send {Blind}{a Up} - return - ^l::Send clear{Enter} ; #l::return ; Clear Terminal and Scroll Buffer