feat(xkeysnail): add cmd+, shortcut for 1Password

This commit is contained in:
2024-08-24 18:06:33 +01:00
parent 93dbc451e3
commit 25fa7329f8

View File

@@ -21,6 +21,10 @@ define_keymap(lambda wm_class: wm_class in ("firefox", "Google-chrome"), {
K("Super-Shift-t"): K("C-Shift-t"),
}, "Browser keys")
define_keymap(lambda wm_class: wm_class in ("1Password"), {
K("Super-comma"): K("C-comma"),
}, "1Password specific keys")
# Emacs-like keybindings in non-Emacs applications
define_keymap(lambda wm_class: wm_class not in ("Emacs", "URxvt", "Gnome-terminal", "Guake"), {
K("Super-x"): K("C-x"),