https://bugzilla.xfce.org/show_bug.cgi?id=15960
howaboutsynergy <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from howaboutsynergy <[email protected]> --- Note that manually toggling always works, eg. #!/bin/bash set -e while true; do #xfconf-query -c xfwm4 -p /general/use_compositing; xfconf-query -c xfwm4 -p /general/use_compositing -T; xfconf-query -c xfwm4 -p /general/use_compositing before=$(xfconf-query -c xfwm4 -p /general/use_compositing) #xfconf-query -c xfwm4 -p /general/use_compositing -T if test "$before" == "true"; then wanted="false" elif test "$before" == "false"; then wanted="true" else echo "Fail '$before'" exit 1 fi xfconf-query -c xfwm4 -p /general/use_compositing -s "$wanted" after=$(xfconf-query -c xfwm4 -p /general/use_compositing) if test "$before" == "$after"; then echo "Failed to set to '$wanted', it's still '$after'" exit 1 fi sleep 0.2 done this never fails. -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ Xfce-bugs mailing list [email protected] https://mail.xfce.org/mailman/listinfo/xfce-bugs
