HiDPI scaling with two screens different resolutions in Ubuntu 16.04
up vote
1
down vote
favorite
I have a Dell XPS 9360 on which I have just installed Ubuntu 16.04.
It has a QHD+ screen (3200 x 1800) and I'm connecting a second FHD monitor (1920 x 1080). It is connected via USB-C and a 4K -> HDMI adaptor + cable.
I am using "Displays" to set my resolution and to set "Scale for menu and title bars".
I would like to have both screens set to max resolution with the QHD+ screen scaling set to 2 and the FHD screen on 1 (default).
I have not found any method of achieving this goal and I'm currently restricted to FHD on both screens.
Does anyone know if it's possible to set different scaling for each monitor based upon the resolution?
If this is not possible, would it then be possible to write a script that will alter the resolution and scaling to the same values for both monitors when I connect / disconnect the monitor?
16.04 unity display-resolution scaling
add a comment |
up vote
1
down vote
favorite
I have a Dell XPS 9360 on which I have just installed Ubuntu 16.04.
It has a QHD+ screen (3200 x 1800) and I'm connecting a second FHD monitor (1920 x 1080). It is connected via USB-C and a 4K -> HDMI adaptor + cable.
I am using "Displays" to set my resolution and to set "Scale for menu and title bars".
I would like to have both screens set to max resolution with the QHD+ screen scaling set to 2 and the FHD screen on 1 (default).
I have not found any method of achieving this goal and I'm currently restricted to FHD on both screens.
Does anyone know if it's possible to set different scaling for each monitor based upon the resolution?
If this is not possible, would it then be possible to write a script that will alter the resolution and scaling to the same values for both monitors when I connect / disconnect the monitor?
16.04 unity display-resolution scaling
Note: I made a mistake, I can scale differently for each screen but it doesn't effect font scaling, only "menu and title bars".
– Ubuntu101
Mar 20 '17 at 9:48
Ye, so did this fix the issue
– Jamie Hutber
Apr 20 '17 at 16:23
If you're staying on Ubuntu 16 try Soren A's comment forxrandr
if you've moved to Ubuntu 18 then this question has multiple answers: askubuntu.com/questions/1029436/…
– icc97
Nov 29 at 1:10
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have a Dell XPS 9360 on which I have just installed Ubuntu 16.04.
It has a QHD+ screen (3200 x 1800) and I'm connecting a second FHD monitor (1920 x 1080). It is connected via USB-C and a 4K -> HDMI adaptor + cable.
I am using "Displays" to set my resolution and to set "Scale for menu and title bars".
I would like to have both screens set to max resolution with the QHD+ screen scaling set to 2 and the FHD screen on 1 (default).
I have not found any method of achieving this goal and I'm currently restricted to FHD on both screens.
Does anyone know if it's possible to set different scaling for each monitor based upon the resolution?
If this is not possible, would it then be possible to write a script that will alter the resolution and scaling to the same values for both monitors when I connect / disconnect the monitor?
16.04 unity display-resolution scaling
I have a Dell XPS 9360 on which I have just installed Ubuntu 16.04.
It has a QHD+ screen (3200 x 1800) and I'm connecting a second FHD monitor (1920 x 1080). It is connected via USB-C and a 4K -> HDMI adaptor + cable.
I am using "Displays" to set my resolution and to set "Scale for menu and title bars".
I would like to have both screens set to max resolution with the QHD+ screen scaling set to 2 and the FHD screen on 1 (default).
I have not found any method of achieving this goal and I'm currently restricted to FHD on both screens.
Does anyone know if it's possible to set different scaling for each monitor based upon the resolution?
If this is not possible, would it then be possible to write a script that will alter the resolution and scaling to the same values for both monitors when I connect / disconnect the monitor?
16.04 unity display-resolution scaling
16.04 unity display-resolution scaling
edited Nov 29 at 3:47
icc97
19929
19929
asked Mar 20 '17 at 9:45
Ubuntu101
61
61
Note: I made a mistake, I can scale differently for each screen but it doesn't effect font scaling, only "menu and title bars".
– Ubuntu101
Mar 20 '17 at 9:48
Ye, so did this fix the issue
– Jamie Hutber
Apr 20 '17 at 16:23
If you're staying on Ubuntu 16 try Soren A's comment forxrandr
if you've moved to Ubuntu 18 then this question has multiple answers: askubuntu.com/questions/1029436/…
– icc97
Nov 29 at 1:10
add a comment |
Note: I made a mistake, I can scale differently for each screen but it doesn't effect font scaling, only "menu and title bars".
– Ubuntu101
Mar 20 '17 at 9:48
Ye, so did this fix the issue
– Jamie Hutber
Apr 20 '17 at 16:23
If you're staying on Ubuntu 16 try Soren A's comment forxrandr
if you've moved to Ubuntu 18 then this question has multiple answers: askubuntu.com/questions/1029436/…
– icc97
Nov 29 at 1:10
Note: I made a mistake, I can scale differently for each screen but it doesn't effect font scaling, only "menu and title bars".
– Ubuntu101
Mar 20 '17 at 9:48
Note: I made a mistake, I can scale differently for each screen but it doesn't effect font scaling, only "menu and title bars".
– Ubuntu101
Mar 20 '17 at 9:48
Ye, so did this fix the issue
– Jamie Hutber
Apr 20 '17 at 16:23
Ye, so did this fix the issue
– Jamie Hutber
Apr 20 '17 at 16:23
If you're staying on Ubuntu 16 try Soren A's comment for
xrandr
if you've moved to Ubuntu 18 then this question has multiple answers: askubuntu.com/questions/1029436/…– icc97
Nov 29 at 1:10
If you're staying on Ubuntu 16 try Soren A's comment for
xrandr
if you've moved to Ubuntu 18 then this question has multiple answers: askubuntu.com/questions/1029436/…– icc97
Nov 29 at 1:10
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
I've answered this on a question that is effectively the same as this earlier question about huge scaling on a monitor
You need to use the Wayland windows system which allows for independent scaling of the in-built display and the monitor.
Wayland is available in Ubuntu 17+. You can switch to Wayland at the login screen and then adjust the scaling in the 'Screen Display' settings.
I've also asked a separate question about issues with Wayland.
1
With xorg system you can usexrandr
to scale each monitor, like thisxrandr --output HDMI-1 --scale 1.25x1.25
and then similar for other monitor. Usexrandr
without arguments to show available monitors and names (depending on HW it might not be HDMI-1 and so for you).
– Soren A
Nov 28 at 14:28
@SorenA I was trying to keep my answer as non-technical as possible, but I think yours is a valid separate answer.
– icc97
Nov 29 at 1:06
1
Actually my answer is done better elsewhere: askubuntu.com/questions/1029436/…
– icc97
Nov 29 at 1:08
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f894862%2fhidpi-scaling-with-two-screens-different-resolutions-in-ubuntu-16-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I've answered this on a question that is effectively the same as this earlier question about huge scaling on a monitor
You need to use the Wayland windows system which allows for independent scaling of the in-built display and the monitor.
Wayland is available in Ubuntu 17+. You can switch to Wayland at the login screen and then adjust the scaling in the 'Screen Display' settings.
I've also asked a separate question about issues with Wayland.
1
With xorg system you can usexrandr
to scale each monitor, like thisxrandr --output HDMI-1 --scale 1.25x1.25
and then similar for other monitor. Usexrandr
without arguments to show available monitors and names (depending on HW it might not be HDMI-1 and so for you).
– Soren A
Nov 28 at 14:28
@SorenA I was trying to keep my answer as non-technical as possible, but I think yours is a valid separate answer.
– icc97
Nov 29 at 1:06
1
Actually my answer is done better elsewhere: askubuntu.com/questions/1029436/…
– icc97
Nov 29 at 1:08
add a comment |
up vote
0
down vote
I've answered this on a question that is effectively the same as this earlier question about huge scaling on a monitor
You need to use the Wayland windows system which allows for independent scaling of the in-built display and the monitor.
Wayland is available in Ubuntu 17+. You can switch to Wayland at the login screen and then adjust the scaling in the 'Screen Display' settings.
I've also asked a separate question about issues with Wayland.
1
With xorg system you can usexrandr
to scale each monitor, like thisxrandr --output HDMI-1 --scale 1.25x1.25
and then similar for other monitor. Usexrandr
without arguments to show available monitors and names (depending on HW it might not be HDMI-1 and so for you).
– Soren A
Nov 28 at 14:28
@SorenA I was trying to keep my answer as non-technical as possible, but I think yours is a valid separate answer.
– icc97
Nov 29 at 1:06
1
Actually my answer is done better elsewhere: askubuntu.com/questions/1029436/…
– icc97
Nov 29 at 1:08
add a comment |
up vote
0
down vote
up vote
0
down vote
I've answered this on a question that is effectively the same as this earlier question about huge scaling on a monitor
You need to use the Wayland windows system which allows for independent scaling of the in-built display and the monitor.
Wayland is available in Ubuntu 17+. You can switch to Wayland at the login screen and then adjust the scaling in the 'Screen Display' settings.
I've also asked a separate question about issues with Wayland.
I've answered this on a question that is effectively the same as this earlier question about huge scaling on a monitor
You need to use the Wayland windows system which allows for independent scaling of the in-built display and the monitor.
Wayland is available in Ubuntu 17+. You can switch to Wayland at the login screen and then adjust the scaling in the 'Screen Display' settings.
I've also asked a separate question about issues with Wayland.
answered Nov 28 at 14:21
icc97
19929
19929
1
With xorg system you can usexrandr
to scale each monitor, like thisxrandr --output HDMI-1 --scale 1.25x1.25
and then similar for other monitor. Usexrandr
without arguments to show available monitors and names (depending on HW it might not be HDMI-1 and so for you).
– Soren A
Nov 28 at 14:28
@SorenA I was trying to keep my answer as non-technical as possible, but I think yours is a valid separate answer.
– icc97
Nov 29 at 1:06
1
Actually my answer is done better elsewhere: askubuntu.com/questions/1029436/…
– icc97
Nov 29 at 1:08
add a comment |
1
With xorg system you can usexrandr
to scale each monitor, like thisxrandr --output HDMI-1 --scale 1.25x1.25
and then similar for other monitor. Usexrandr
without arguments to show available monitors and names (depending on HW it might not be HDMI-1 and so for you).
– Soren A
Nov 28 at 14:28
@SorenA I was trying to keep my answer as non-technical as possible, but I think yours is a valid separate answer.
– icc97
Nov 29 at 1:06
1
Actually my answer is done better elsewhere: askubuntu.com/questions/1029436/…
– icc97
Nov 29 at 1:08
1
1
With xorg system you can use
xrandr
to scale each monitor, like this xrandr --output HDMI-1 --scale 1.25x1.25
and then similar for other monitor. Use xrandr
without arguments to show available monitors and names (depending on HW it might not be HDMI-1 and so for you).– Soren A
Nov 28 at 14:28
With xorg system you can use
xrandr
to scale each monitor, like this xrandr --output HDMI-1 --scale 1.25x1.25
and then similar for other monitor. Use xrandr
without arguments to show available monitors and names (depending on HW it might not be HDMI-1 and so for you).– Soren A
Nov 28 at 14:28
@SorenA I was trying to keep my answer as non-technical as possible, but I think yours is a valid separate answer.
– icc97
Nov 29 at 1:06
@SorenA I was trying to keep my answer as non-technical as possible, but I think yours is a valid separate answer.
– icc97
Nov 29 at 1:06
1
1
Actually my answer is done better elsewhere: askubuntu.com/questions/1029436/…
– icc97
Nov 29 at 1:08
Actually my answer is done better elsewhere: askubuntu.com/questions/1029436/…
– icc97
Nov 29 at 1:08
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f894862%2fhidpi-scaling-with-two-screens-different-resolutions-in-ubuntu-16-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Note: I made a mistake, I can scale differently for each screen but it doesn't effect font scaling, only "menu and title bars".
– Ubuntu101
Mar 20 '17 at 9:48
Ye, so did this fix the issue
– Jamie Hutber
Apr 20 '17 at 16:23
If you're staying on Ubuntu 16 try Soren A's comment for
xrandr
if you've moved to Ubuntu 18 then this question has multiple answers: askubuntu.com/questions/1029436/…– icc97
Nov 29 at 1:10