2020-10-30 17:12:53 +00:00
|
|
|
#!/bin/sh
|
2020-09-17 16:02:24 +00:00
|
|
|
|
|
|
|
DIR=$(readlink -f $(dirname $0))
|
|
|
|
|
|
|
|
killall -q picom
|
|
|
|
while pgrep -x picom >/dev/null; do sleep 1; done
|
2020-10-30 19:21:28 +00:00
|
|
|
picom -b --config $DIR/picom.conf --experimental-backends \
|
|
|
|
--blur-method dual_kawase --blur-strength 6 \
|
|
|
|
--no-fading-openclose || \
|
|
|
|
picom -b --config $DIR/picom.conf --no-fading-openclose
|