dotfiles/awesome/scripts/compton-toggle.sh

8 lines
81 B
Bash
Raw Normal View History

2020-05-16 20:07:21 +00:00
#!/bin/bash
if pgrep -x "compton" > /dev/null
then
killall picom
else
picom
fi