11 lines
213 B
Bash
Executable file
11 lines
213 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if pidof picom; then
|
|
killall picom
|
|
notify-send -h string:x-dunst-stack-tag:"togcom" \
|
|
"Compositor Off"
|
|
else
|
|
setsid -f picom
|
|
notify-send -h string:x-dunst-stack-tag:"togcom" \
|
|
"Compositor On"
|
|
fi
|