dotfiles-old/.local/scripts/toggle-comp.sh

7 lines
75 B
Bash
Executable File

#!/bin/sh
if [ "$(pgrep picom)" ];then
pkill picom
else
picom &
fi