He sudo on my nixos-rebuild till I switch
0

Configure Feed

Select the types of activity you want to include in your feed.

make the terminal toys menu awesome

Madeline Hashcube (Jun 9, 2026, 10:39 PM -0500) c1cd2c81 06857af1

+18 -7
+18 -7
users/hashcube/programs/display/niri.nix
··· 1 - { config, ... }: 1 + { 2 + config, 3 + lib, 4 + ... 5 + }: 2 6 { 3 7 programs.niri = { 4 8 settings = { ··· 95 99 hotkey-overlay.title = "Open Cava"; 96 100 action = term "cava"; 97 101 }; 98 - "Mod+Shift+C" = { 102 + "Mod+Shift+C" = 103 + let toys = [ 104 + "cava" 105 + "pipes-rs" 106 + "btop" 107 + "tmatrix" 108 + "fireplace" 109 + ]; in { 99 110 hotkey-overlay.title = "Open Terminal Toys Menu"; 100 - action = nu ''echo "cava 101 - pipes-rs 102 - btop 103 - tmatrix 104 - fireplace" | walker -dnNH --height 5 | if $in != "" { xdg-terminal-exec $in }''; 111 + action = nu ''echo "${lib.concatStringsSep "\n" toys}" | 112 + walker -dnNH --height 5 | 113 + if $in != "" { xdg-terminal-exec $in }''; 105 114 }; 106 115 "Mod+Escape" = { 107 116 hotkey-overlay.title = "Lock Screen"; ··· 181 190 bottom-right = r; 182 191 }; 183 192 clip-to-geometry = true; 193 + # TODO: Whenever this gets added to the flake, use it 194 + # background-effect.blur = true; 184 195 } 185 196 ]; 186 197 };