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);