aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/toggle-xfwm4-compositor
blob: 3ef5e16680d098cfd2e22eb50b0f0295296a9d98 (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" || echo "xfwm4 compositor disabled"
else
    xfconf-query -c xfwm4 -p /general/use_compositing -s true
    notify-send "Xfce Window Manager" "Compositor Enabled" || echo "xfwm4 compositor Enabled"
fi