11 lines
145 B
Bash
11 lines
145 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
START="al-compositor --start"
|
||
|
STOP="al-compositor --stop"
|
||
|
|
||
|
if (pgrep -x "compton" > /dev/null); then
|
||
|
$STOP
|
||
|
else
|
||
|
$START
|
||
|
fi
|