From ff691e62955313c66a34742806651b70f0bb6a8d Mon Sep 17 00:00:00 2001 From: Yuxuan Shui Date: Tue, 19 Dec 2023 09:53:57 +0000 Subject: [PATCH] core: make missing dpms extension non-fatal We are not using it for anything at the moment, and it is breaking CI. Signed-off-by: Yuxuan Shui --- src/picom.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/picom.c b/src/picom.c index 12aff18335..dd3fdbdae7 100644 --- a/src/picom.c +++ b/src/picom.c @@ -2132,8 +2132,7 @@ static session_t *session_init(int argc, char **argv, Display *dpy, ext_info = xcb_get_extension_data(ps->c.c, &xcb_dpms_id); ps->dpms_exists = ext_info && ext_info->present; if (!ps->dpms_exists) { - log_fatal("No DPMS extension"); - exit(1); + log_warn("No DPMS extension"); } // Parse configuration file