diff --git a/config/dot/hypr/README.md b/config/dot/hypr/README.md index 5adf4e8..2d5a349 100644 --- a/config/dot/hypr/README.md +++ b/config/dot/hypr/README.md @@ -283,7 +283,7 @@ The mental model is unchanged from Forge: | `SHIFT` / `ALT + Print` | Screenshot screen / window immediately | | `SUPER + SHIFT + S` | Screen Intelligence — read text and codes from a selection | | `SUPER + SHIFT + P` | Color picker | -| `CTRL + ALT + L` | Lock (SUPER+L is "focus right") | +| `CTRL + ALT + L` · `SUPER + Backspace` | Lock (SUPER+L is "focus right") | | `CTRL + ALT + Delete` | Power menu | ### Apps @@ -364,7 +364,7 @@ These are the places a 1:1 port was impossible, and what was done instead: behaviors, keeping the horizontal/vertical and grow/shrink pairing. - **Overview on `SUPER + grave`, not a bare SUPER tap.** Tap-detection on a modifier misfires when you're quick with SUPER combos. -- **Lock on `CTRL + ALT + L`.** `SUPER + L` is "focus right" in this keymap. +- **Lock on `CTRL + ALT + L` or `SUPER + Backspace`.** `SUPER + L` is "focus right" in this keymap. - **`SUPER + grave` was Forge's "cycle windows of same app"**, which Hyprland has no equivalent for. "Last window" moved to `SUPER + SHIFT + grave`. - **`gnome-control-center` is launched with `XDG_CURRENT_DESKTOP=GNOME`**, diff --git a/config/dot/hypr/keybinds.lua b/config/dot/hypr/keybinds.lua index 69f4050..05d3a39 100644 --- a/config/dot/hypr/keybinds.lua +++ b/config/dot/hypr/keybinds.lua @@ -287,6 +287,7 @@ bind(mod .. " + SHIFT + X", hl.dsp.window.move({ workspace = "special:scratch" } -- GNOME's lock was SUPER+L, which is "focus right" here, so lock moves to -- CTRL+ALT+L -- the other binding most people already have in muscle memory. bind("CTRL + ALT + L", hl.dsp.exec_cmd("loginctl lock-session"), { description = "Lock" }) +bind("SUPER + Backspace", hl.dsp.exec_cmd("loginctl lock-session"), { description = "Lock" }) bind("CTRL + ALT + Delete", hl.dsp.exec_cmd(qs("powermenu", "toggle")), { description = "Power menu" }) -- ── Media and volume ────────────────────────────────────────────────────────