diff --git a/bin/omarchy-menu-keybindings b/bin/omarchy-menu-keybindings index dd6f97b2..34486206 100755 --- a/bin/omarchy-menu-keybindings +++ b/bin/omarchy-menu-keybindings @@ -46,8 +46,12 @@ parse_keycodes() { while IFS= read -r line; do if [[ $line =~ code:([0-9]+) ]]; then code="${BASH_REMATCH[1]}" - symbol=$(lookup_keycode_cached "$code" "$XKB_KEYMAP_CACHE") - echo "${line/code:${code}/$symbol}" + if [[ $code == "201" ]]; then + echo "${line/SUPER SHIFT,code:201/,COPILOT KEY}" + else + symbol=$(lookup_keycode_cached "$code" "$XKB_KEYMAP_CACHE") + echo "${line/code:${code}/$symbol}" + fi elif [[ $line =~ mouse:([0-9]+) ]]; then code="${BASH_REMATCH[1]}" diff --git a/default/hypr/bindings/utilities.conf b/default/hypr/bindings/utilities.conf index 14da1fd2..7de79d6b 100644 --- a/default/hypr/bindings/utilities.conf +++ b/default/hypr/bindings/utilities.conf @@ -4,7 +4,7 @@ bindd = SUPER CTRL, E, Emoji picker, exec, omarchy-launch-walker -m symbols bindd = SUPER CTRL, C, Capture menu, exec, omarchy-menu capture bindd = SUPER CTRL, O, Toggle menu, exec, omarchy-menu toggle bindd = SUPER ALT, SPACE, Omarchy menu, exec, omarchy-menu -bindd = SUPER SHIFT, code:201, Omarchy menu (Copilot key), exec, omarchy-menu +bindd = SUPER SHIFT, code:201, Omarchy menu, exec, omarchy-menu bindd = SUPER, ESCAPE, System menu, exec, omarchy-menu system bindld = , XF86PowerOff, Power menu, exec, omarchy-menu system bindd = SUPER, K, Show key bindings, exec, omarchy-menu-keybindings