diff options
author | Adrian Kummerlaender | 2025-08-01 10:17:09 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2025-08-01 10:17:09 +0200 |
commit | de4c27daa51fb7c92d54320e70fa99ce5b6ff24d (patch) | |
tree | 583a33ea29d45df7066c4884b735760eaedf8354 /gui/dunst.nix | |
parent | c6fd36cf35a4322b97038ba3d7071c1a0b6a0b98 (diff) | |
download | nixos_home-de4c27daa51fb7c92d54320e70fa99ce5b6ff24d.tar nixos_home-de4c27daa51fb7c92d54320e70fa99ce5b6ff24d.tar.gz nixos_home-de4c27daa51fb7c92d54320e70fa99ce5b6ff24d.tar.bz2 nixos_home-de4c27daa51fb7c92d54320e70fa99ce5b6ff24d.tar.lz nixos_home-de4c27daa51fb7c92d54320e70fa99ce5b6ff24d.tar.xz nixos_home-de4c27daa51fb7c92d54320e70fa99ce5b6ff24d.tar.zst nixos_home-de4c27daa51fb7c92d54320e70fa99ce5b6ff24d.zip |
misc: Fix display scaling on athena, various tweaks
Diffstat (limited to 'gui/dunst.nix')
-rw-r--r-- | gui/dunst.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gui/dunst.nix b/gui/dunst.nix index a75b56d..79e5061 100644 --- a/gui/dunst.nix +++ b/gui/dunst.nix @@ -10,15 +10,16 @@ enable = true; settings = { global = { - width = 300; - height = 50; - offset = "5x5"; + notification_limit = 5; + width = "(0, 800)"; + height = 40; + offset = "6x6"; origin = "bottom-right"; transparency = 10; frame_color = "#909737"; background = "#909737"; foreground = "#111111"; - font = "Iosevka 11"; + font = "Iosevka 10"; }; }; }; |