diff --git a/README.md b/README.md --- a/README.md +++ b/README.md @@ -12,6 +12,8 @@ ## Keybinds for Niri (WIP) +The important XF86 Keys just work as intended + | Keybind | Function | |-----------------|---------------------------| | `Mod`+`` | Focus window to the right | @@ -39,7 +41,7 @@ | `Mod`+`.` | Open App Picker | | `Mod`+`Q` | Close Window | | `Mod`+`W` | Open Overview | -| `Mod`+`E` | Open Zed Editor | +| `Mod`+`E` | Open Aerc | | `Mod`+`R` | Open Nautilus | | `Mod`+`T` | Open Kitty | | `Mod`+`A` | Tile Focused Window | @@ -47,7 +49,7 @@ | `Mod`+`D` | Fullscreen Focused Window | | `Mod`+`F` | Resize Focused Window to 100% | | `Mod`+`Shift`+`F` | Resize Focused Window to Fill the remaining space | -| `Mod`+`L` | Toggle | +| `Mod`+`L` | Toggle Stacking/Tabbed | | `Mod`+`Z` | Open Zen Browser | | `Mod`+`X` | Center Focused Window | | `Mod`+`C` | Spawn Cava | diff --git a/users/hashcube/programs/display/niri.nix b/users/hashcube/programs/display/niri.nix --- a/users/hashcube/programs/display/niri.nix +++ b/users/hashcube/programs/display/niri.nix @@ -63,8 +63,8 @@ hotkey-overlay.title = "Spawn Walker (App Launcher)"; action = sh ''walker''; }; - # Gotta figure this one out "Mod+N" = { + hotkey-overlay.title = "Open Notifications"; action = sh ''sleep 0.1 && swaync-client -t -sw''; }; "Mod+T" = { @@ -103,8 +103,14 @@ tmatrix fireplace" | walker -dnNH --height 5 | if $in != "" { xdg-terminal-exec $in }''; }; - "Mod+Escape".action = spawn "swaylock"; - "Mod+Shift+End".action = spawn "wleave"; + "Mod+Escape" = { + hotkey-overlay.title = "Lock Screen"; + action = spawn "swaylock"; + }; + "Mod+Shift+End" = { + hotkey-overlay.title = "Show Power Options"; + action = spawn "wleave"; + }; "Mod+slash".action = show-hotkey-overlay; "Mod+Q".action = close-window;