mirror of https://github.com/E-Almqvist/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
422 B
15 lines
422 B
4 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Generate config on demand
|
||
|
[ ! -z "$1" ] && [ "$1" == "-r" ] && \
|
||
|
$HOME/.local/bin/themer --template .config/picom/config.template
|
||
|
|
||
|
# 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
|
||
|
|
||
|
# Launch picom
|
||
3 years ago
|
picom --config ~/.config/picom/picom.conf --experimental-backends --xrender-sync-fence &
|