1
0
Fork 0
dotfiles/common/.local/libexec/dwm/togcompositor

11 lines
286 B
Bash
Executable file

#!/bin/sh
if [ "$(sv status picom | cut -d ':' -f 1)" = "run" ]; then
sv down picom
notify-send -h string:x-dunst-stack-tag:"togcompositor" \
"Compositor Off"
else
sv up picom
notify-send -h string:x-dunst-stack-tag:"togcompositor" \
"Compositor On"
fi