Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

The video projector I have to use this week projects an image too large for its screen
and spills over on every side.

Fixing the physical setup is not possible or at least unlikely for the moment: the only solution is to carefully resize and position windows so that they display in the visible part of the screen - using full-screen mode is out.

Is there a way around this via software, using xrandr for example?

# xrandr doesn't have a padding option...
xrandr --output VGA1 --mode 1360x768 --left-of LVDS1 --padding 200
share|improve this question

1 Answer

The best I could come up with was

  • use XMonad and a virtual machine: resize the VM window to fit the visible area of the display (no window decorations to get in the way) and then display the presentation full-screen in the VM

  • use xrandr's fb option to limit the total screen size to the visible area and the transform option to move it to the right place. Like this the other display is pretty useless.

    xrandr --fb 1000x600 --output VGA1 --mode 1360x768 --transform 1,0,-150,0,1,-80,0,0,1

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.