Build out the rofi menu system roadmap item: - New nomarchy-menu modules: network (nmtui), bluetooth (blueman-manager), capture (grim/slurp submenu → clipboard/file), ask (free-text → claude CLI in a terminal), and keybinds (the SUPER+? cheatsheet). - modules/home/keybinds.nix is now the single source of truth for both the Hyprland bind strings and the cheatsheet, so the two can't drift — hyprland.nix maps it into `bind`, rofi.nix renders the padded two-column sheet (generated/mouse binds live in its `extra` rows). - New binds: SUPER+Space (quick launch), SUPER+M (main menu), SUPER+? (cheatsheet). SUPER+D stays rofi -show drun. - Ask Claude pulls claude-code fresh from npm via `npx @anthropic-ai/claude-code@latest` (the nixpkgs package lags model releases); nodejs is bundled for npx. nix flake check passes. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
57 lines
3.7 KiB
Nix
57 lines
3.7 KiB
Nix
# Canonical keybind list — the single source of truth for BOTH the
|
|
# Hyprland `bind` strings (hyprland.nix) and the SUPER+? cheatsheet
|
|
# rendered by nomarchy-menu (rofi.nix). One place, no second renderer to
|
|
# keep in sync — the same rule the theme pipeline follows.
|
|
#
|
|
# mods — modifier string, Hyprland syntax ("$mod", "$mod SHIFT", "")
|
|
# key — the key name
|
|
# action — the Hyprland dispatcher (+args) that the bind runs
|
|
# desc — human label, shown in the cheatsheet
|
|
#
|
|
# `extra` holds cheatsheet-only rows for binds generated elsewhere
|
|
# (per-workspace numbers, mouse drags) so they still show up under SUPER+?.
|
|
{
|
|
binds = [
|
|
{ mods = "$mod"; key = "Return"; action = "exec, $terminal"; desc = "Open terminal"; }
|
|
{ mods = "$mod"; key = "Space"; action = "exec, rofi -show drun"; desc = "Quick launch (apps)"; }
|
|
{ mods = "$mod"; key = "D"; action = "exec, rofi -show drun"; desc = "App launcher"; }
|
|
{ mods = "$mod"; key = "M"; action = "exec, nomarchy-menu"; desc = "Main menu"; }
|
|
{ mods = "$mod"; key = "E"; action = "exec, $terminal -e yazi"; desc = "File manager (yazi)"; }
|
|
{ mods = "$mod"; key = "Q"; action = "killactive"; desc = "Close window"; }
|
|
{ mods = "$mod"; key = "F"; action = "fullscreen"; desc = "Fullscreen"; }
|
|
{ mods = "$mod"; key = "V"; action = "togglefloating"; desc = "Toggle floating"; }
|
|
{ mods = "$mod SHIFT"; key = "E"; action = "exit"; desc = "Exit Hyprland"; }
|
|
|
|
# Theme picker (menu dispatcher): apply writes the state and runs
|
|
# home-manager switch (progress via notify-send).
|
|
{ mods = "$mod"; key = "T"; action = "exec, nomarchy-menu theme"; desc = "Theme picker"; }
|
|
# Cycle the current theme's wallpapers (instant, no rebuild).
|
|
{ mods = "$mod SHIFT"; key = "T"; action = "exec, nomarchy-theme-sync bg next"; desc = "Next wallpaper"; }
|
|
|
|
# Power menu via the dispatcher. Not Escape: Super+Escape gets
|
|
# swallowed before reaching the dispatcher on some setups.
|
|
{ mods = "$mod"; key = "X"; action = "exec, nomarchy-menu power"; desc = "Power menu"; }
|
|
|
|
{ mods = "$mod"; key = "N"; action = "exec, swaync-client -t"; desc = "Notification centre"; }
|
|
{ mods = "$mod CTRL"; key = "V"; action = "exec, nomarchy-menu clipboard"; desc = "Clipboard history"; }
|
|
# SUPER+? (the "question" keysym already implies Shift on most layouts).
|
|
{ mods = "$mod"; key = "question"; action = "exec, nomarchy-menu keybinds"; desc = "Keybindings cheatsheet"; }
|
|
|
|
# Focus
|
|
{ mods = "$mod"; key = "H"; action = "movefocus, l"; desc = "Focus left"; }
|
|
{ mods = "$mod"; key = "L"; action = "movefocus, r"; desc = "Focus right"; }
|
|
{ mods = "$mod"; key = "K"; action = "movefocus, u"; desc = "Focus up"; }
|
|
{ mods = "$mod"; key = "J"; action = "movefocus, d"; desc = "Focus down"; }
|
|
|
|
# Screenshot region to clipboard (the menu's Capture module has more).
|
|
{ mods = ""; key = "Print"; action = "exec, grim -g \"$(slurp)\" - | wl-copy"; desc = "Screenshot region → clipboard"; }
|
|
];
|
|
|
|
extra = [
|
|
{ keys = "SUPER + 1-9"; desc = "Switch to workspace 1-9"; }
|
|
{ keys = "SUPER + SHIFT + 1-9"; desc = "Move window to workspace 1-9"; }
|
|
{ keys = "SUPER + drag"; desc = "Move (LMB) / resize (RMB) window"; }
|
|
{ keys = "Volume / Brightness"; desc = "Hardware keys, shown via the OSD"; }
|
|
];
|
|
}
|