mabox-tools/bin/compton_toggle

11 lines
151 B
Plaintext
Raw Normal View History

2020-02-18 17:24:18 +01:00
#!/bin/bash
if [ `pidof picom` ]; then
echo "Stopping picom"
killall picom
else
echo "Starting picom"
picom &
fi
exit