2020-10-31 13:17:42 +01:00
|
|
|
!/usr/bin/env sh
|
2020-01-31 13:47:50 +01:00
|
|
|
|
2020-10-31 13:17:42 +01:00
|
|
|
Terminate already running picom instances
|
2020-01-31 13:47:50 +01:00
|
|
|
killall -q picom
|
|
|
|
|
2020-10-31 13:17:42 +01:00
|
|
|
Wait until the processes have been shut down
|
2020-01-31 13:47:50 +01:00
|
|
|
while pgrep -u $UID -x picom > /dev/null; do sleep 1; done
|
|
|
|
|
|
|
|
picom --config ~/.config/picom/picom.conf -b
|
|
|
|
|
|
|
|
echo "Compton launched..."
|