Files
dotfiles/bspwm/toggle-picom.sh
2025-06-03 14:16:01 +03:00

9 lines
89 B
Bash
Executable File

#!/bin/bash
pid=$(pgrep -x picom)
if [ -z "$pid" ]; then
picom -b
else
kill $pid
fi