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