0
fork

Configure Feed

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

make opaque and other things

+12 -12
+8 -8
configs/niri/config.kdl
··· 159 159 // You can change how the focus ring looks. 160 160 focus-ring { 161 161 // Uncomment this line to disable the focus ring. 162 - // off 162 + off 163 163 164 164 // How many logical pixels the ring extends out from the windows. 165 165 width 4 ··· 195 195 border { 196 196 // The settings are the same as for the focus ring. 197 197 // If you enable the border, you probably want to disable the focus ring. 198 - off 198 + // off 199 199 200 200 width 4 201 - active-color "#ffc87f" 202 - inactive-color "#505050" 201 + active-color "#e06666" 202 + inactive-color "#6f4da7" 203 203 204 204 // Color of the border around windows that request your attention. 205 205 urgent-color "#9b0000" ··· 354 354 } 355 355 356 356 window-rule { 357 - geometry-corner-radius 12 357 + geometry-corner-radius 20 358 358 clip-to-geometry true 359 359 } 360 360 ··· 386 386 Mod+D hotkey-overlay-title="Launcher" { spawn "noctalia-shell" "ipc" "call" "launcher" "toggle"; } 387 387 Mod+Shift+D hotkey-overlay-title="Open (k)runner (backup runner)" { spawn "krunner"; } 388 388 Alt+Space hotkey-overlay-title="Open Krun" { spawn "krunner"; } 389 - Mod+X hotkey-overlay-title="Clipboard" { spawn "noctalia-shell" "ipc" "call" "launcher" "clipboard"; } 389 + Mod+V hotkey-overlay-title="Clipboard" { spawn "noctalia-shell" "ipc" "call" "launcher" "clipboard"; } 390 390 Mod+Period hotkey-overlay-title="Emoji" { spawn "noctalia-shell" "ipc" "call" "launcher" "emoji"; } 391 391 392 392 // You can also use a shell. Do this if you need pipes, multiple commands, etc. ··· 603 603 Mod+Shift+Equal { set-window-height "+10%"; } 604 604 605 605 // Move the focused window between the floating and the tiling layout. 606 - Mod+V { toggle-window-floating; } 607 - Mod+Shift+V { switch-focus-between-floating-and-tiling; } 606 + Mod+X { toggle-window-floating; } 607 + Mod+Shift+X { switch-focus-between-floating-and-tiling; } 608 608 609 609 // Toggle tabbed column display mode. 610 610 // Windows in this column will appear as vertical tabs,
+4 -4
home/modules/wezterm.nix
··· 27 27 config.window_background_opacity = 1.0 28 28 config.font = wezterm.font('Maple Mono NF') 29 29 config.window_padding = { 30 - left = 1, 31 - right = 1, 32 - top = 0, 33 - bottom = 0, 30 + left = 5, 31 + right = 5, 32 + top = 5, 33 + bottom = 5, 34 34 } 35 35 config.font_size = 9 36 36 config.window_close_confirmation = 'NeverPrompt'