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 diff --git a/install/config/hardware/intel/resume-boost.sh b/install/config/hardware/intel/resume-boost.sh index 8a1f48cd..3d177cfd 100644 --- a/install/config/hardware/intel/resume-boost.sh +++ b/install/config/hardware/intel/resume-boost.sh @@ -1,8 +1,8 @@ -# Boost CPU performance for 10 seconds after resume on Panther Lake systems. +# Boost CPU performance for 10 seconds after resume on Intel systems. # The powersave governor with balance_power EPP is slow to ramp frequency # after long suspends, causing noticeable sluggishness on wake. -if omarchy-hw-intel-ptl; then +if omarchy-hw-intel; then sudo mkdir -p /usr/lib/systemd/system-sleep sudo install -m 0755 -o root -g root "$OMARCHY_PATH/default/systemd/system-sleep/resume-boost" /usr/lib/systemd/system-sleep/ fi