me like nix
0

Configure Feed

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

update picker

author
Sean Aye
date (Aug 31, 2025, 11:49 AM -0400) commit e0327556 parent dfed3ec0 change-id wortskyl
+26 -10
+10 -10
hosts/common/home.nix
··· 35 35 }; 36 36 }; 37 37 binds = { 38 - "Mod+d".action.spawn = [ 39 - "wofi" 40 - "--show" 41 - "drun" 42 - "--prompt" 43 - "Search..." 44 - ]; 38 + "Mod+d".action.spawn = "fuzzel"; 39 + "Mod+e".action.spawn = "bemoji"; 40 + "Mod+n".action.spawn = "networkmanager_dmenu"; 45 41 "Mod+a".action.spawn = "alacritty"; 46 42 "Mod+h".action = { 47 43 focus-column-left = { }; ··· 212 208 }; 213 209 214 210 clock = { 211 + format = "{:%d-%m-%Y %H:%M}"; 215 212 tooltip-format = "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"; 216 - format-alt = "{:%Y-%m-%d}"; 213 + format-alt = "{:%Y-%m-%d %H:%M:%S}"; 217 214 }; 218 215 219 216 cpu = { ··· 371 368 htop 372 369 zellij # terminal multiplexer 373 370 alacritty 374 - wofi # Application launcher (or pkgs.rofi-wayland) 371 + fuzzel # Application launcher 372 + bemoji # emoji picker 373 + networkmanager_dmenu # network picker for fuzzel 375 374 waybar # Status bar (highly recommended) 376 375 mako # Notification daemon 377 376 swww # For setting wallpapers ··· 427 426 keybinds = { 428 427 unbind = [ "Ctrl q" ]; 429 428 }; 429 + pane_frames = false; 430 430 ui = { 431 - pane_frames = false; 431 + pane_frames.hide_session_name = true; 432 432 }; 433 433 }; 434 434 };
+16
hosts/common/waybar/style.css
··· 69 69 color: @red; 70 70 } 71 71 72 + #network { 73 + color: @green; 74 + } 75 + 76 + #cpu { 77 + color: @peach; 78 + } 79 + 80 + #memory { 81 + color: @mauve; 82 + } 83 + 84 + #temperature { 85 + color: @red; 86 + } 87 + 72 88 #backlight { 73 89 color: @yellow; 74 90 }