From ae38efedbbaa5cbcb539d1db979e4bba3d8d0c59 Mon Sep 17 00:00:00 2001 From: fwsmit Date: Fri, 4 Dec 2020 19:04:19 +0100 Subject: [PATCH] Update dunstrc with Wayland settings --- dunstrc | 10 ++++++++++ src/dunst.c | 1 - 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/dunstrc b/dunstrc index 8d27d59..90aa2a8 100644 --- a/dunstrc +++ b/dunstrc @@ -247,6 +247,16 @@ # user defined timeout. ignore_dbusclose = false + ### Wayland ### + # These settings are Wayland-specific. They have no effect when using X11 + + # Uncomment this if you want to let notications appear over fullscreen + # notifications (default top) + # layer = overlay + + # Set this to true to use X11 output on Wayland. + force_xwayland = false + ### Legacy # Use the Xinerama extension instead of RandR for multi-monitor support. diff --git a/src/dunst.c b/src/dunst.c index 7d98a19..0d68a84 100644 --- a/src/dunst.c +++ b/src/dunst.c @@ -86,7 +86,6 @@ static gboolean run(void *data) if (active) { gint64 now = time_monotonic_now(); gint64 sleep = queues_get_next_datachange(now); - /* sleep = 100000; // Make sure wayland input is handled in time FIXME (fixed)*/ gint64 timeout_at = now + sleep; LOG_D("Sleeping for %li ms", sleep/1000);