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
This commit is contained in:
Sravan Balaji
2021-01-19 09:55:09 -05:00
parent d5dee8fb71
commit 8ac3140f59
2 changed files with 3 additions and 2 deletions

View File

@@ -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

View File

@@ -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
}