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

12 lines
213 B
Plaintext
Raw Normal View History

#!/bin/sh
if pidof picom; then
2024-01-02 19:09:46 +01:00
killall picom
notify-send -h string:x-dunst-stack-tag:"togcom" \
"Compositor Off"
else
2024-01-02 19:09:46 +01:00
setsid -f picom
notify-send -h string:x-dunst-stack-tag:"togcom" \
"Compositor On"
fi