aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/toggle-xfwm4-compositor
blob: b8462ebd37f523a6e7e850ba77fea5a74bfa69f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

current=$(xfconf-query -c xfwm4 -p /general/use_compositing)

if [ "$current" = "true" ]; then
    xfconf-query -c xfwm4 -p /general/use_compositing -s false
    notify-send "Xfce Window Manager" "Compositor Disabled" -t 2048 || echo "xfwm4 compositor disabled"
else
    xfconf-query -c xfwm4 -p /general/use_compositing -s true
    notify-send "Xfce Window Manager" "Compositor Enabled" -t 2048 || echo "xfwm4 compositor Enabled"
fi