From 25fa7329f89380bc98465a23a8c7b9e495e21541 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sat, 24 Aug 2024 18:06:33 +0100 Subject: [PATCH] feat(xkeysnail): add cmd+, shortcut for 1Password --- config/xkeysnail/config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/xkeysnail/config.py b/config/xkeysnail/config.py index 1c37d0b..e57af63 100644 --- a/config/xkeysnail/config.py +++ b/config/xkeysnail/config.py @@ -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"),