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