I would like a black, empty margin surrounding my entire screen, effectively turning a 24" monitor into a 20" one instead.
My setup:
- Ubuntu 18.04.1 LTS
- Intel Graphics
- Xfce4 (I'd prefer a cross desktop enviroment solution)
Having tried xrandr
with a combination of many different parameters, including: --scale
, --panning
, etc. I cannot shrink my monitor as desired.
If shrinking my monitor isn't possible with xrandr
, fbset
or some other tool, does an option to add in my /usr/share/X11/xorg.conf.d/20-intel.conf
file exist?
xrandr
with the--scale
option? Did you specify which output, did it display an error? – Kristopher Ives Sep 29 '18 at 01:41--scale 2x2
doubles the screen resolution,--scale 0.5x0.5
does nothing. – LogicalException Sep 29 '18 at 01:45xrandr -s 100x100
or similar? – Kristopher Ives Sep 29 '18 at 01:47--pos
makes the unused area flicker? – Kristopher Ives Sep 29 '18 at 03:04--pos
does nothing), this is the closest I got:xrandr --output HDMI1 --scale 1.1x1.1 && xrandr -s 1920x1080
xrandr -s
needs to be a separate command, otherwise, the mouse enters the unused area. – LogicalException Sep 29 '18 at 03:28