How to setup display panning - Printable Version +- Linux Lite Forums (https://www.freecinema2022.gq/forums) +-- Forum: Software - Support (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=5) +--- Forum: Tutorials (https://www.freecinema2022.gq/forums/forumdisplay.php?fid=21) +--- Thread: How to setup display panning (/showthread.php?tid=660) |
How to setup display panning - anon222 - 08-01-2014 This might be usefull for those with small screens. If you follow this tutorial you can setup a virtual screen that is bigger than your physical screen. So, it's like you have a zoomed in screen and you move from one corner to another when you position your mouse to the screen edge. First test your display screen size, device, available resolutions and refresh rates. Code: xrandr Code: Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 16384 x 16384 If you are using laptop or netbook, your device will probably be LVDS. Lets say I want to use 2100x2100 virtual screen size. I can set this with Code: xrandr --output VGA-0 --rate 60 --mode 1920x1080 --fb 2100x2100 --panning 2100x2100 --mode sets physical screen resolution, set it to your default screen resolution Importanton't use resolutions or refresh rates your monitor don't support for your physical screen! --output for me is VGA-0, change it to your device for example LVDS --fb sets virtal screen size --panning sets panning area --fb and -- panning are tipically the same values If I want to switch back I will use this Code: xrandr --output VGA-0 --rate 60 --mode 1920x1080 --fb 1920x1080 --panning 1920x1080 If you want to save it you must create a file .xprofile in your home directory and make it executable. Code: printf "xrandr --output VGA-0 --rate 60 --mode 1920x1080 --fb 2100x2100 --panning 2100x2100" > ~/.xprofile Code: chmod +x ~/.xprofile If OS fails to start GUI press f7 while it's booting up, login as root and delete .xprofile rm -f ~/.xprofile |