diff --git a/modules/home/wayland/apps/dunst/default.nix b/modules/home/wayland/apps/dunst/default.nix index eeb90c3..c2ace31 100755 --- a/modules/home/wayland/apps/dunst/default.nix +++ b/modules/home/wayland/apps/dunst/default.nix @@ -8,14 +8,11 @@ settings = { global = { follow = "mouse"; - height = "200"; + height = "(0, 200)"; width = "350"; scale = "0"; - origin = "top-right"; - offset = "${ - toString ((lib.strings.toInt config.colorScheme.palette.gaps-bar) - + (lib.strings.toInt config.colorScheme.palette.gaps-screen)) - }x${config.colorScheme.palette.gaps-screen}"; + origin = "bottom-right"; + offset = "(${config.colorScheme.palette.gaps-screen},${config.colorScheme.palette.gaps-screen})"; notification_limit = "0"; progress_bar = "true"; progress_bar_height = "10"; @@ -62,8 +59,8 @@ corner_radius = "${config.colorScheme.palette.border-radius}"; ignore_dbusclose = "false"; layer = "top"; - force_xwayland = "true"; - force_xinerama = "false"; + # force_xwayland = "true"; + # force_xinerama = "false"; mouse_left_click = "close_current"; mouse_middle_click = "context"; @@ -91,6 +88,9 @@ timeout = "10"; highlight = "#${config.colorScheme.palette.base0E}"; }; + experimental = { + per_monitor_dpi = true; + }; }; }; };