Added sway focus on window activation
Added desired dunst behaviour for clicking
This commit is contained in:
parent
1c96195117
commit
e2f3f3e7fb
7
home.nix
7
home.nix
|
|
@ -142,7 +142,12 @@ in
|
|||
services.dunst = {
|
||||
enable = true;
|
||||
settings = {
|
||||
global.font = "Red Hat Display 12";
|
||||
global = {
|
||||
font = "Red Hat Display 12";
|
||||
mouse_left_click = "do_action, close_current";
|
||||
mouse_middle_click = "close_all";
|
||||
mouse_right_click = "close_current";
|
||||
};
|
||||
};
|
||||
};
|
||||
services.batsignal = {
|
||||
|
|
|
|||
|
|
@ -77,5 +77,8 @@ in {
|
|||
''
|
||||
exec swaybg -i ${backgroundImage}
|
||||
'' + # Background image
|
||||
''
|
||||
focus_on_window_activation focus
|
||||
'' + # Focus on window activation lol
|
||||
"";
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue