dotfiles/.config/picom/launch.sh

12 lines
261 B
Bash
Raw Normal View History

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