From c4129cd8589c8644936a4a8b581261ab6ede2f5b Mon Sep 17 00:00:00 2001 From: RedBearAK <64876997+RedBearAK@users.noreply.github.com> Date: Wed, 18 Dec 2024 14:48:47 -0900 Subject: [PATCH] Add override keymap for Wave terminal --- default-toshy-config/toshy_config.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/default-toshy-config/toshy_config.py b/default-toshy-config/toshy_config.py index ad72269..240d3a1 100644 --- a/default-toshy-config/toshy_config.py +++ b/default-toshy-config/toshy_config.py @@ -4279,6 +4279,14 @@ def getDK(): C("RC-Equal"): C("C-Alt-Equal"), # Increase font size }, when = matchProps(clas="^terminology$")) +keymap("Wave terminal", { + C("RC-t"): C("Alt-t"), # Open a new tab + C("RC-n"): C("Alt-n"), # Open a new terminal block + C("Shift-RC-n"): C("Shift-Alt-n"), # Open a new window + C("RC-w"): C("Alt-w"), # Close the current block + C("Shift-RC-w"): C("Shift-Alt-w"), # Close the current tab +}, when = matchProps(clas="^Wave$")) + keymap("Xfce4 terminal", { C("RC-comma"): [C("Alt-e"), sleep(0.1), C("e")], # Open Preferences dialog }, when = matchProps(clas="^xfce4-terminal$"))