Is there any way to zoom in external display?
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
3
down vote
favorite
I am currently using Ubuntu 16.04 LTS
I have two displays. I want to make the display setting "Mirror Display". I can do it by using setting manager or xrandr. But I want my external display mirrored but zoomed in the bottom-left part of the screen.
Is it possible?
Edited: DE is xfce4
16.04 display-resolution settings
add a comment |Â
up vote
3
down vote
favorite
I am currently using Ubuntu 16.04 LTS
I have two displays. I want to make the display setting "Mirror Display". I can do it by using setting manager or xrandr. But I want my external display mirrored but zoomed in the bottom-left part of the screen.
Is it possible?
Edited: DE is xfce4
16.04 display-resolution settings
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I am currently using Ubuntu 16.04 LTS
I have two displays. I want to make the display setting "Mirror Display". I can do it by using setting manager or xrandr. But I want my external display mirrored but zoomed in the bottom-left part of the screen.
Is it possible?
Edited: DE is xfce4
16.04 display-resolution settings
I am currently using Ubuntu 16.04 LTS
I have two displays. I want to make the display setting "Mirror Display". I can do it by using setting manager or xrandr. But I want my external display mirrored but zoomed in the bottom-left part of the screen.
Is it possible?
Edited: DE is xfce4
16.04 display-resolution settings
16.04 display-resolution settings
asked Feb 1 at 10:53
![](https://lh4.googleusercontent.com/-6j4u6AGHqjo/AAAAAAAAAAI/AAAAAAAAABc/J-fwAXwqqpg/photo.jpg?sz=32)
![](https://lh4.googleusercontent.com/-6j4u6AGHqjo/AAAAAAAAAAI/AAAAAAAAABc/J-fwAXwqqpg/photo.jpg?sz=32)
Jahirul Sourav
7213
7213
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
You could zoom with
xrandr --output <Display-Name> --scale 0.5x0.5
#adjust 0.5 (^(-1) = 2x zoom) and <Display-Name>
then with arandr move the screens so they overlap to your liking (or do the math by yourself and also do the positioning with xrandr in terminal).
EDIT:
Step by step example:
Find the screen name for the screen you want to zoom (this case your external) with xrandr in terminal
$ xrandr #will output similar to this
Screen 0: minimum 8 x 8, current 3840 x 1080, maximum 8192 x 8192
VGA-0 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis)
[[...] list of modes]
DVI-I-1 connected 1920x1080+1920+0 (normal left inverted right x axis y axis)
[[...] list of modes]
this case my active displays are "VGA-0" and "DVI-I-1" (they will differ for your screen), atm DVI-I-1 right to VGA-0. Now we want VGA-0 show zoomed mirror of bottom-left quarter from DVI-I-1. So we execute in terminal:
$ xrandr --output VGA-0 --scale 0.5x0.5 #or i.e. 0.75 for 1.333x zoom factor
thereafter we start arandr and drag the screens like so:
click "apply". See if we got what we wanted, we export via "safe as" to a shellscript containing (in this case):
xrandr --output VGA-0 --primary --mode 1920x1080 --pos 0x540 --rotate normal --output DVI-I-1 --mode 1920x1080 --pos 0x0 --rotate normal
we can add the zoom part to this:
xrandr --output VGA-0 --scale 0.5x0.5 --primary --mode 1920x1080 --pos 0x540 --rotate normal --output DVI-I-1 --mode 1920x1080 --pos 0x0 --rotate normal
now when we execute this command (in terminal, or via shellscript, ...) VGA-0 will be zoomed and put at pos 0x540 (DVI-I-1 not zoomed at 0x0).
Note that your screen names, resolution, desired zoom-level etc. will/may vary, so you have to adjust to your (and each new) screen.
Also note that some zoom factors will yield blurry results.
Side note: I used this for zooming out, wich made me able to play a game with fixed resolution on my netbook with sightly lower display resolution than desired â just noting, that's also possible ^^
EDIT2:
Another way to zoom would be changing the resolution with arandr (right click screen icon to get to context menu -> resolution), and drag screens to overlap like shown above.
pro:
- less likely to blur
- doable with pure gui-workflow
con:
- limited to resolutions the monitor device claims to provide
@kaj-dj thanks. btw, is there any way to make the display zoomed in to bottom-left?
â Jahirul Sourav
Feb 2 at 9:22
1
i edited the answer to contain the positioning
â kai-dj
Feb 2 at 14:24
@kaj-dj thanks again for the help. I also found another solutionxrandr --output eDP1 --transform 0.25,0,-100,0,0.25,576,0,0,1
but here you need some knowledge about openGL
â Jahirul Sourav
Feb 3 at 15:08
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
You could zoom with
xrandr --output <Display-Name> --scale 0.5x0.5
#adjust 0.5 (^(-1) = 2x zoom) and <Display-Name>
then with arandr move the screens so they overlap to your liking (or do the math by yourself and also do the positioning with xrandr in terminal).
EDIT:
Step by step example:
Find the screen name for the screen you want to zoom (this case your external) with xrandr in terminal
$ xrandr #will output similar to this
Screen 0: minimum 8 x 8, current 3840 x 1080, maximum 8192 x 8192
VGA-0 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis)
[[...] list of modes]
DVI-I-1 connected 1920x1080+1920+0 (normal left inverted right x axis y axis)
[[...] list of modes]
this case my active displays are "VGA-0" and "DVI-I-1" (they will differ for your screen), atm DVI-I-1 right to VGA-0. Now we want VGA-0 show zoomed mirror of bottom-left quarter from DVI-I-1. So we execute in terminal:
$ xrandr --output VGA-0 --scale 0.5x0.5 #or i.e. 0.75 for 1.333x zoom factor
thereafter we start arandr and drag the screens like so:
click "apply". See if we got what we wanted, we export via "safe as" to a shellscript containing (in this case):
xrandr --output VGA-0 --primary --mode 1920x1080 --pos 0x540 --rotate normal --output DVI-I-1 --mode 1920x1080 --pos 0x0 --rotate normal
we can add the zoom part to this:
xrandr --output VGA-0 --scale 0.5x0.5 --primary --mode 1920x1080 --pos 0x540 --rotate normal --output DVI-I-1 --mode 1920x1080 --pos 0x0 --rotate normal
now when we execute this command (in terminal, or via shellscript, ...) VGA-0 will be zoomed and put at pos 0x540 (DVI-I-1 not zoomed at 0x0).
Note that your screen names, resolution, desired zoom-level etc. will/may vary, so you have to adjust to your (and each new) screen.
Also note that some zoom factors will yield blurry results.
Side note: I used this for zooming out, wich made me able to play a game with fixed resolution on my netbook with sightly lower display resolution than desired â just noting, that's also possible ^^
EDIT2:
Another way to zoom would be changing the resolution with arandr (right click screen icon to get to context menu -> resolution), and drag screens to overlap like shown above.
pro:
- less likely to blur
- doable with pure gui-workflow
con:
- limited to resolutions the monitor device claims to provide
@kaj-dj thanks. btw, is there any way to make the display zoomed in to bottom-left?
â Jahirul Sourav
Feb 2 at 9:22
1
i edited the answer to contain the positioning
â kai-dj
Feb 2 at 14:24
@kaj-dj thanks again for the help. I also found another solutionxrandr --output eDP1 --transform 0.25,0,-100,0,0.25,576,0,0,1
but here you need some knowledge about openGL
â Jahirul Sourav
Feb 3 at 15:08
add a comment |Â
up vote
2
down vote
accepted
You could zoom with
xrandr --output <Display-Name> --scale 0.5x0.5
#adjust 0.5 (^(-1) = 2x zoom) and <Display-Name>
then with arandr move the screens so they overlap to your liking (or do the math by yourself and also do the positioning with xrandr in terminal).
EDIT:
Step by step example:
Find the screen name for the screen you want to zoom (this case your external) with xrandr in terminal
$ xrandr #will output similar to this
Screen 0: minimum 8 x 8, current 3840 x 1080, maximum 8192 x 8192
VGA-0 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis)
[[...] list of modes]
DVI-I-1 connected 1920x1080+1920+0 (normal left inverted right x axis y axis)
[[...] list of modes]
this case my active displays are "VGA-0" and "DVI-I-1" (they will differ for your screen), atm DVI-I-1 right to VGA-0. Now we want VGA-0 show zoomed mirror of bottom-left quarter from DVI-I-1. So we execute in terminal:
$ xrandr --output VGA-0 --scale 0.5x0.5 #or i.e. 0.75 for 1.333x zoom factor
thereafter we start arandr and drag the screens like so:
click "apply". See if we got what we wanted, we export via "safe as" to a shellscript containing (in this case):
xrandr --output VGA-0 --primary --mode 1920x1080 --pos 0x540 --rotate normal --output DVI-I-1 --mode 1920x1080 --pos 0x0 --rotate normal
we can add the zoom part to this:
xrandr --output VGA-0 --scale 0.5x0.5 --primary --mode 1920x1080 --pos 0x540 --rotate normal --output DVI-I-1 --mode 1920x1080 --pos 0x0 --rotate normal
now when we execute this command (in terminal, or via shellscript, ...) VGA-0 will be zoomed and put at pos 0x540 (DVI-I-1 not zoomed at 0x0).
Note that your screen names, resolution, desired zoom-level etc. will/may vary, so you have to adjust to your (and each new) screen.
Also note that some zoom factors will yield blurry results.
Side note: I used this for zooming out, wich made me able to play a game with fixed resolution on my netbook with sightly lower display resolution than desired â just noting, that's also possible ^^
EDIT2:
Another way to zoom would be changing the resolution with arandr (right click screen icon to get to context menu -> resolution), and drag screens to overlap like shown above.
pro:
- less likely to blur
- doable with pure gui-workflow
con:
- limited to resolutions the monitor device claims to provide
@kaj-dj thanks. btw, is there any way to make the display zoomed in to bottom-left?
â Jahirul Sourav
Feb 2 at 9:22
1
i edited the answer to contain the positioning
â kai-dj
Feb 2 at 14:24
@kaj-dj thanks again for the help. I also found another solutionxrandr --output eDP1 --transform 0.25,0,-100,0,0.25,576,0,0,1
but here you need some knowledge about openGL
â Jahirul Sourav
Feb 3 at 15:08
add a comment |Â
up vote
2
down vote
accepted
up vote
2
down vote
accepted
You could zoom with
xrandr --output <Display-Name> --scale 0.5x0.5
#adjust 0.5 (^(-1) = 2x zoom) and <Display-Name>
then with arandr move the screens so they overlap to your liking (or do the math by yourself and also do the positioning with xrandr in terminal).
EDIT:
Step by step example:
Find the screen name for the screen you want to zoom (this case your external) with xrandr in terminal
$ xrandr #will output similar to this
Screen 0: minimum 8 x 8, current 3840 x 1080, maximum 8192 x 8192
VGA-0 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis)
[[...] list of modes]
DVI-I-1 connected 1920x1080+1920+0 (normal left inverted right x axis y axis)
[[...] list of modes]
this case my active displays are "VGA-0" and "DVI-I-1" (they will differ for your screen), atm DVI-I-1 right to VGA-0. Now we want VGA-0 show zoomed mirror of bottom-left quarter from DVI-I-1. So we execute in terminal:
$ xrandr --output VGA-0 --scale 0.5x0.5 #or i.e. 0.75 for 1.333x zoom factor
thereafter we start arandr and drag the screens like so:
click "apply". See if we got what we wanted, we export via "safe as" to a shellscript containing (in this case):
xrandr --output VGA-0 --primary --mode 1920x1080 --pos 0x540 --rotate normal --output DVI-I-1 --mode 1920x1080 --pos 0x0 --rotate normal
we can add the zoom part to this:
xrandr --output VGA-0 --scale 0.5x0.5 --primary --mode 1920x1080 --pos 0x540 --rotate normal --output DVI-I-1 --mode 1920x1080 --pos 0x0 --rotate normal
now when we execute this command (in terminal, or via shellscript, ...) VGA-0 will be zoomed and put at pos 0x540 (DVI-I-1 not zoomed at 0x0).
Note that your screen names, resolution, desired zoom-level etc. will/may vary, so you have to adjust to your (and each new) screen.
Also note that some zoom factors will yield blurry results.
Side note: I used this for zooming out, wich made me able to play a game with fixed resolution on my netbook with sightly lower display resolution than desired â just noting, that's also possible ^^
EDIT2:
Another way to zoom would be changing the resolution with arandr (right click screen icon to get to context menu -> resolution), and drag screens to overlap like shown above.
pro:
- less likely to blur
- doable with pure gui-workflow
con:
- limited to resolutions the monitor device claims to provide
You could zoom with
xrandr --output <Display-Name> --scale 0.5x0.5
#adjust 0.5 (^(-1) = 2x zoom) and <Display-Name>
then with arandr move the screens so they overlap to your liking (or do the math by yourself and also do the positioning with xrandr in terminal).
EDIT:
Step by step example:
Find the screen name for the screen you want to zoom (this case your external) with xrandr in terminal
$ xrandr #will output similar to this
Screen 0: minimum 8 x 8, current 3840 x 1080, maximum 8192 x 8192
VGA-0 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis)
[[...] list of modes]
DVI-I-1 connected 1920x1080+1920+0 (normal left inverted right x axis y axis)
[[...] list of modes]
this case my active displays are "VGA-0" and "DVI-I-1" (they will differ for your screen), atm DVI-I-1 right to VGA-0. Now we want VGA-0 show zoomed mirror of bottom-left quarter from DVI-I-1. So we execute in terminal:
$ xrandr --output VGA-0 --scale 0.5x0.5 #or i.e. 0.75 for 1.333x zoom factor
thereafter we start arandr and drag the screens like so:
click "apply". See if we got what we wanted, we export via "safe as" to a shellscript containing (in this case):
xrandr --output VGA-0 --primary --mode 1920x1080 --pos 0x540 --rotate normal --output DVI-I-1 --mode 1920x1080 --pos 0x0 --rotate normal
we can add the zoom part to this:
xrandr --output VGA-0 --scale 0.5x0.5 --primary --mode 1920x1080 --pos 0x540 --rotate normal --output DVI-I-1 --mode 1920x1080 --pos 0x0 --rotate normal
now when we execute this command (in terminal, or via shellscript, ...) VGA-0 will be zoomed and put at pos 0x540 (DVI-I-1 not zoomed at 0x0).
Note that your screen names, resolution, desired zoom-level etc. will/may vary, so you have to adjust to your (and each new) screen.
Also note that some zoom factors will yield blurry results.
Side note: I used this for zooming out, wich made me able to play a game with fixed resolution on my netbook with sightly lower display resolution than desired â just noting, that's also possible ^^
EDIT2:
Another way to zoom would be changing the resolution with arandr (right click screen icon to get to context menu -> resolution), and drag screens to overlap like shown above.
pro:
- less likely to blur
- doable with pure gui-workflow
con:
- limited to resolutions the monitor device claims to provide
edited Feb 2 at 16:21
answered Feb 1 at 11:18
![](https://i.stack.imgur.com/s9yXr.png?s=32&g=1)
![](https://i.stack.imgur.com/s9yXr.png?s=32&g=1)
kai-dj
22826
22826
@kaj-dj thanks. btw, is there any way to make the display zoomed in to bottom-left?
â Jahirul Sourav
Feb 2 at 9:22
1
i edited the answer to contain the positioning
â kai-dj
Feb 2 at 14:24
@kaj-dj thanks again for the help. I also found another solutionxrandr --output eDP1 --transform 0.25,0,-100,0,0.25,576,0,0,1
but here you need some knowledge about openGL
â Jahirul Sourav
Feb 3 at 15:08
add a comment |Â
@kaj-dj thanks. btw, is there any way to make the display zoomed in to bottom-left?
â Jahirul Sourav
Feb 2 at 9:22
1
i edited the answer to contain the positioning
â kai-dj
Feb 2 at 14:24
@kaj-dj thanks again for the help. I also found another solutionxrandr --output eDP1 --transform 0.25,0,-100,0,0.25,576,0,0,1
but here you need some knowledge about openGL
â Jahirul Sourav
Feb 3 at 15:08
@kaj-dj thanks. btw, is there any way to make the display zoomed in to bottom-left?
â Jahirul Sourav
Feb 2 at 9:22
@kaj-dj thanks. btw, is there any way to make the display zoomed in to bottom-left?
â Jahirul Sourav
Feb 2 at 9:22
1
1
i edited the answer to contain the positioning
â kai-dj
Feb 2 at 14:24
i edited the answer to contain the positioning
â kai-dj
Feb 2 at 14:24
@kaj-dj thanks again for the help. I also found another solution
xrandr --output eDP1 --transform 0.25,0,-100,0,0.25,576,0,0,1
but here you need some knowledge about openGLâ Jahirul Sourav
Feb 3 at 15:08
@kaj-dj thanks again for the help. I also found another solution
xrandr --output eDP1 --transform 0.25,0,-100,0,0.25,576,0,0,1
but here you need some knowledge about openGLâ Jahirul Sourav
Feb 3 at 15:08
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1002049%2fis-there-any-way-to-zoom-in-external-display%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password