dotfiles/lina/xmonad/toggle_picom.sh
2025-08-24 13:05:25 +03:30

9 lines
86 B
Bash
Executable file

#!/bin/bash
if pgrep -x 'picom'; then
killall 'picom'
else
picom -b
fi
exit