10 lines
114 B
Plaintext
10 lines
114 B
Plaintext
|
#!/bin/sh
|
||
|
compton=$(ps aux | grep -w "picom")
|
||
|
|
||
|
if [ "$compton" != "" ]
|
||
|
then
|
||
|
killall compton
|
||
|
else
|
||
|
compton -cC
|
||
|
fi
|