fix: update picom configuration

This commit is contained in:
Klesh Wong 2022-12-01 10:04:18 +08:00
parent 21eb336b94
commit 8a51047728
2 changed files with 3 additions and 4 deletions

View File

@ -262,7 +262,7 @@ detect-client-opacity = true;
# try detecting this with X RandR extension.
#
# refresh-rate = 60
refresh-rate = 0;
# refresh-rate = 0;
# Use EWMH '_NET_ACTIVE_WINDOW' to determine currently focused window,
# rather than listening to 'FocusIn'/'FocusOut' event. Might have more accuracy,

View File

@ -10,9 +10,8 @@ stop() {
start() {
echo start
picom -b --experimental-backends \
--blur-method dual_kawase --blur-strength 7 --blur-size 15 \
--no-fading-openclose
picom --blur-method dual_kawase --blur-strength 7 --blur-size 15 \
--no-fading-openclose -b
sleep 1
! pgrep -x picom >/dev/null && echo 'fallback' && picom -b --no-fading-openclose
}