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