8 lines
81 B
Bash
8 lines
81 B
Bash
|
#!/bin/bash
|
||
|
if pgrep -x "compton" > /dev/null
|
||
|
then
|
||
|
killall picom
|
||
|
else
|
||
|
picom
|
||
|
fi
|