11 lines
174 B
Plaintext
11 lines
174 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if [ `pidof picom` ]; then
|
||
|
echo "Stopping compton"
|
||
|
killall picom
|
||
|
else
|
||
|
echo "Starting compton"
|
||
|
picom --config /dev/null &
|
||
|
fi
|
||
|
exit
|