al-skel/home/bin/start-compton
2017-12-01 23:06:11 -08:00

12 lines
216 B
Bash
Executable File

#!/usr/bin/env bash
start="al-compositor --start"
restart="al-compositor --restart"
if [ -e "${HOME}/.config/.composite_enabled" ]; then
if pgrep compton; then
$restart
else
$start
fi
fi