Last active
March 25, 2021 16:24
-
-
Save pythonhacker/5fee31afe3fed42b34af837cf7bd10de to your computer and use it in GitHub Desktop.
Toggle X compositor on or off in shell (linux)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function toggle_xcomp() { | |
# toggle X compositor | |
ret=`xfconf-query -c xfwm4 -p /general/use_compositing` | |
case "$ret" in | |
"false") echo "turning compositor on";xfconf-query -c xfwm4 -p /general/use_compositing -t bool -s true;; | |
*) echo "turning compositor off";xfconf-query -c xfwm4 -p /general/use_compositing -t bool -s false;; | |
esac | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment