Control compiz zoom from the command line
I'm downstairs on my phone trying to VNC into my desktop upstairs but earlier today, I zoomed in with compiz on one of my screens so it makes using that screen over VNC almost impossible.
Now I could go upstairs... But I'm lazy!
Does anybody know a way to turn off zoom via the command line?
You can control Compiz via DBus, and there is even a helper python script to make it easier.
Example usage of the compiz-send.py
script:
hello@world:~$ python compiz-send.py ezoom zoom_out_key
This will zoom out if you are using the Enhanced Zoom Desktop plugin.
More Examples.
What a brilliant question! :-)
This is what you want:
xdotool keydown Super && for i in $(seq 0 30); do xdotool click 5; done && xdotool keyup Super
you probalby need to sudo apt-get install xdotool
.