dotfiles/.config/picom/launch.sh

11 lines
233 B
Bash
Raw Normal View History

#!/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
# Start picom
2020-07-09 08:37:07 +00:00
picom --experimental-backends &