Kiana Sheibani
037190c38a
Move swaynag's dialog to the bottom of the screen, and prevent sway from spawning multiple copies of it
18 lines
309 B
Nix
18 lines
309 B
Nix
{ pkgs, ... }:
|
|
{
|
|
xdg.configFile."swaynag/config".text =
|
|
''
|
|
font=JetBrainsMono 10
|
|
layer=top
|
|
edge=bottom
|
|
|
|
[exit]
|
|
background=111320D0
|
|
text=a9b1d6
|
|
border-bottom=7BC5E4
|
|
border-bottom-size=1
|
|
button-background=282E49F0
|
|
button-border-size=2
|
|
'';
|
|
}
|