From 262355792a2f50b1f26591b0a2c38baf894ec281 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Wed, 1 May 2019 12:09:25 +0200 Subject: [PATCH] xsession: don't daemonize compton It seems it may break on some configuration, like with amdgpu driver. It is stated it could do that in the manual page. --- xsession | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xsession b/xsession index 682971b..9b9d1ba 100644 --- a/xsession +++ b/xsession @@ -51,10 +51,10 @@ case $(glxinfo | awk -F': ' '($1 == "OpenGL vendor string") {print $2}') in # --unredir-if-possible \ # --no-dnd-shadow --no-dock-shadow # It seems there is no way to not have tearing with xrender... - compton --daemon --backend xrender --paint-on-overlay + compton --backend xrender --paint-on-overlay & ;; *) - compton --daemon --backend glx --xrender-sync --xrender-sync-fence --vsync opengl-swc --paint-on-overlay + compton --backend glx --xrender-sync --xrender-sync-fence --vsync opengl-swc --paint-on-overlay & ;; esac