From 8ac3140f595d239d10c9262fb905c293508198a4 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Tue, 19 Jan 2021 09:55:09 -0500 Subject: [PATCH] Picom Configuration & Toggle Script - Do not fade opacity on window open/close - Remove experimental backend flag from picom launch command since it is enabled in config --- .config/picom/picom.conf | 3 ++- .config/picom/toggle_picom.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.config/picom/picom.conf b/.config/picom/picom.conf index 6121a4e..0087729 100644 --- a/.config/picom/picom.conf +++ b/.config/picom/picom.conf @@ -1,4 +1,4 @@ -################################# +################################ # Animations # ################################# # requires https://github.com/jonaburg/picom @@ -166,6 +166,7 @@ fade-exclude = [ # Do not fade on window open/close. # no-fading-openclose = false +no-fading-openclose = true # Do not fade destroyed ARGB windows with WM frame. Workaround of bugs in Openbox, Fluxbox, etc. # no-fading-destroyed-argb = false diff --git a/.config/picom/toggle_picom.sh b/.config/picom/toggle_picom.sh index 4419bda..0d5c2cf 100755 --- a/.config/picom/toggle_picom.sh +++ b/.config/picom/toggle_picom.sh @@ -21,7 +21,7 @@ turn_on() { notify-send "Turning Picom ON" if [ $(check_running) -eq '0' ]; then - picom --experimental-backend --config /home/sravan/.config/picom/picom.conf & + picom --config /home/sravan/.config/picom/picom.conf & fi }