iso-profiles/mabox-pl/live-overlay/usr/bin/compton_toggle

10 lines
160 B
Plaintext
Raw Normal View History

2019-11-01 17:22:26 +01:00
#!/bin/bash
if [ `pidof compton` ]; then
echo "Stopping compton"
killall compton
else
echo "Starting compton"
compton &
fi
exit