I'm using Ubuntu on a laptop (with its built-in screen disabled) connected to a 3840x2160 external display.
Before sharing my screen on a video chat, I always like to switch the resolution down to 1920x1080.
I want to be able to quickly toggle the resolution of my external display between 3840x2160 and 1920x1080 via a keyboard shortcut, such as SuperPrntScrn.
This really old answer might be relevant as a starting place, but I'm not sure where to go from here.
As an example (but not on Ubuntu), I was able to do it on a Macbook following this answer.
This answer was more helpful than I originally realized.
xrandr -s 0 -r 30.00
will set the system to use the 1st resolution at 30 Hz (or 29.98 Hz actually, somehow), andxrandr -s 6 -r 30.00
will switch to the 7th. Test those commands.vim toggle_resolution.sh
and paste the sample bash script shown below (and edit as necessary).chmod +x toggle_resolution.sh
./toggle_resolution.sh
a couple times to test the toggling.Sample bash script: