How can I swap my two screens, left to right?X.org: two 'Screens' on one 'Device'NVIDIA driver upgrade failedWhy doesn't my right screen refresh correctly when my left screen does?Set up multi-head environnement on FreeBSD running X.orgIs it possible to configure a 'scaled' desktop in xorg.conf similar to using xrandr's scale-from option?How can I make nvidia packages work on Mint 17.3How can I get my Optimus-addled NVIDIA card to offer output via xrandr?How can I make xrandr modifications persist for more than 1 second?Ubuntu 14.04 does not save screen resolutionHow do I make xrandr settings permanent in Debian 9?
Can I make popcorn with any corn?
How can the DM most effectively choose 1 out of an odd number of players to be targeted by an attack or effect?
How to make payment on the internet without leaving a money trail?
Patience, young "Padovan"
Is there a minimum number of transactions in a block?
"You are your self first supporter", a more proper way to say it
Is Social Media Science Fiction?
How does one intimidate enemies without having the capacity for violence?
I see my dog run
Possibly bubble sort algorithm
Why are 150k or 200k jobs considered good when there are 300k+ births a month?
declaring a variable twice in IIFE
What makes Graph invariants so useful/important?
Is there a familial term for apples and pears?
Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?
How to type dʒ symbol (IPA) on Mac?
Copycat chess is back
What is the command to reset a PC without deleting any files
What typically incentivizes a professor to change jobs to a lower ranking university?
What would happen to a modern skyscraper if it rains micro blackholes?
How can bays and straits be determined in a procedurally generated map?
Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?
Validation accuracy vs Testing accuracy
What would the Romans have called "sorcery"?
How can I swap my two screens, left to right?
X.org: two 'Screens' on one 'Device'NVIDIA driver upgrade failedWhy doesn't my right screen refresh correctly when my left screen does?Set up multi-head environnement on FreeBSD running X.orgIs it possible to configure a 'scaled' desktop in xorg.conf similar to using xrandr's scale-from option?How can I make nvidia packages work on Mint 17.3How can I get my Optimus-addled NVIDIA card to offer output via xrandr?How can I make xrandr modifications persist for more than 1 second?Ubuntu 14.04 does not save screen resolutionHow do I make xrandr settings permanent in Debian 9?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I pressed something and accidentally swapped my two screens. My left one is actually considered as the right one, and vice versa. How can I swap them back?
Edit - Specifically, I'm using Gnome, though we might also want to keep this question generic.
Edit 2 - It appears that my driver isn't compatible with xrandr. I'm attaching log of /var/log/Xorg.0.log
here
xorg gnome xrandr monitors multi-monitor
add a comment |
I pressed something and accidentally swapped my two screens. My left one is actually considered as the right one, and vice versa. How can I swap them back?
Edit - Specifically, I'm using Gnome, though we might also want to keep this question generic.
Edit 2 - It appears that my driver isn't compatible with xrandr. I'm attaching log of /var/log/Xorg.0.log
here
xorg gnome xrandr monitors multi-monitor
Your upload only has the first 49 lines (and the relevant parts are later). Don't copy-paste from an editor, just upload the whole file.
– Gilles
Apr 5 '11 at 18:06
add a comment |
I pressed something and accidentally swapped my two screens. My left one is actually considered as the right one, and vice versa. How can I swap them back?
Edit - Specifically, I'm using Gnome, though we might also want to keep this question generic.
Edit 2 - It appears that my driver isn't compatible with xrandr. I'm attaching log of /var/log/Xorg.0.log
here
xorg gnome xrandr monitors multi-monitor
I pressed something and accidentally swapped my two screens. My left one is actually considered as the right one, and vice versa. How can I swap them back?
Edit - Specifically, I'm using Gnome, though we might also want to keep this question generic.
Edit 2 - It appears that my driver isn't compatible with xrandr. I'm attaching log of /var/log/Xorg.0.log
here
xorg gnome xrandr monitors multi-monitor
xorg gnome xrandr monitors multi-monitor
edited Oct 16 '17 at 10:56
Jeff Schaller♦
44.7k1163145
44.7k1163145
asked Apr 4 '11 at 15:29
ripper234ripper234
9,399366986
9,399366986
Your upload only has the first 49 lines (and the relevant parts are later). Don't copy-paste from an editor, just upload the whole file.
– Gilles
Apr 5 '11 at 18:06
add a comment |
Your upload only has the first 49 lines (and the relevant parts are later). Don't copy-paste from an editor, just upload the whole file.
– Gilles
Apr 5 '11 at 18:06
Your upload only has the first 49 lines (and the relevant parts are later). Don't copy-paste from an editor, just upload the whole file.
– Gilles
Apr 5 '11 at 18:06
Your upload only has the first 49 lines (and the relevant parts are later). Don't copy-paste from an editor, just upload the whole file.
– Gilles
Apr 5 '11 at 18:06
add a comment |
4 Answers
4
active
oldest
votes
Your desktop environment probably has a way, but you don't say which one you're using (if any).
If your display driver is compatible with the XRandR extension, which is the standard X.org method for managing display resolutions and arrangements, you can use the command-line utility xrandr
. I think the proprietary NVidia driver bypasses XRandR, so if you're using it, you'll have to use a dedicated NVidia tool.
Run xrandr
(with no argument) to see your monitor (screen) arrangement. You'll see lines like these:
DVI-0 connected 1600x1200+1600+0 (normal left inverted right x axis y axis) 408mm x 306mm
DVI-1 connected 1600x1200+0+0 (normal left inverted right x axis y axis) 408mm x 306mm
This example means that I have two monitors called DVI-0
and DVI-1
, and DVI-1
is at the top left (position +0+0
) while DVI-0
is to its right (position +1600+0
). To swap them, I would run
xrandr --output DVI-0 --left-of DVI-1
I'm using Gnome. Having some problems with randr - pastebin.com/rZEjdN4B
– ripper234
Apr 5 '11 at 6:34
@ripper234: Your display driver isn't compatible with XRandR. What display driver are you using (not just nvidia/ati/intel, but which driver: nv/nouveau/nvidia/radeon/radeonhd/fglrx/…)? If you're not sure, attach the contents of/var/log/Xorg.0.log
to your question.
– Gilles
Apr 5 '11 at 7:18
here's the log, thanks. pastebin.com/wpNutkwp
– ripper234
Apr 5 '11 at 7:54
That swaps them around but now I can't scroll the mouse in the correct direction between them. When my mouse is on my right screen, when I scroll left, the mouse stops at the barrier of the right screen - it does not continue onto the left screen.
– 8bitjunkie
May 10 '18 at 11:31
add a comment |
I used the native Gnome Monitor Manager (from the System->Preferences menu) and it worked like a charm.
add a comment |
I don't remember where I found this answer, but it works for me xrandr -o normal
add a comment |
Ubuntu 18.10 here with GNOME 3.30.2.
Just go to Settings > Devices > Displays.
The display arrangement can be rearranged, with simple drag-and-drop.
I had better experience doing this rather than adding xrandr --output DVI-0 --left-of DVI-1
to my /home/.profile
.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f10589%2fhow-can-i-swap-my-two-screens-left-to-right%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your desktop environment probably has a way, but you don't say which one you're using (if any).
If your display driver is compatible with the XRandR extension, which is the standard X.org method for managing display resolutions and arrangements, you can use the command-line utility xrandr
. I think the proprietary NVidia driver bypasses XRandR, so if you're using it, you'll have to use a dedicated NVidia tool.
Run xrandr
(with no argument) to see your monitor (screen) arrangement. You'll see lines like these:
DVI-0 connected 1600x1200+1600+0 (normal left inverted right x axis y axis) 408mm x 306mm
DVI-1 connected 1600x1200+0+0 (normal left inverted right x axis y axis) 408mm x 306mm
This example means that I have two monitors called DVI-0
and DVI-1
, and DVI-1
is at the top left (position +0+0
) while DVI-0
is to its right (position +1600+0
). To swap them, I would run
xrandr --output DVI-0 --left-of DVI-1
I'm using Gnome. Having some problems with randr - pastebin.com/rZEjdN4B
– ripper234
Apr 5 '11 at 6:34
@ripper234: Your display driver isn't compatible with XRandR. What display driver are you using (not just nvidia/ati/intel, but which driver: nv/nouveau/nvidia/radeon/radeonhd/fglrx/…)? If you're not sure, attach the contents of/var/log/Xorg.0.log
to your question.
– Gilles
Apr 5 '11 at 7:18
here's the log, thanks. pastebin.com/wpNutkwp
– ripper234
Apr 5 '11 at 7:54
That swaps them around but now I can't scroll the mouse in the correct direction between them. When my mouse is on my right screen, when I scroll left, the mouse stops at the barrier of the right screen - it does not continue onto the left screen.
– 8bitjunkie
May 10 '18 at 11:31
add a comment |
Your desktop environment probably has a way, but you don't say which one you're using (if any).
If your display driver is compatible with the XRandR extension, which is the standard X.org method for managing display resolutions and arrangements, you can use the command-line utility xrandr
. I think the proprietary NVidia driver bypasses XRandR, so if you're using it, you'll have to use a dedicated NVidia tool.
Run xrandr
(with no argument) to see your monitor (screen) arrangement. You'll see lines like these:
DVI-0 connected 1600x1200+1600+0 (normal left inverted right x axis y axis) 408mm x 306mm
DVI-1 connected 1600x1200+0+0 (normal left inverted right x axis y axis) 408mm x 306mm
This example means that I have two monitors called DVI-0
and DVI-1
, and DVI-1
is at the top left (position +0+0
) while DVI-0
is to its right (position +1600+0
). To swap them, I would run
xrandr --output DVI-0 --left-of DVI-1
I'm using Gnome. Having some problems with randr - pastebin.com/rZEjdN4B
– ripper234
Apr 5 '11 at 6:34
@ripper234: Your display driver isn't compatible with XRandR. What display driver are you using (not just nvidia/ati/intel, but which driver: nv/nouveau/nvidia/radeon/radeonhd/fglrx/…)? If you're not sure, attach the contents of/var/log/Xorg.0.log
to your question.
– Gilles
Apr 5 '11 at 7:18
here's the log, thanks. pastebin.com/wpNutkwp
– ripper234
Apr 5 '11 at 7:54
That swaps them around but now I can't scroll the mouse in the correct direction between them. When my mouse is on my right screen, when I scroll left, the mouse stops at the barrier of the right screen - it does not continue onto the left screen.
– 8bitjunkie
May 10 '18 at 11:31
add a comment |
Your desktop environment probably has a way, but you don't say which one you're using (if any).
If your display driver is compatible with the XRandR extension, which is the standard X.org method for managing display resolutions and arrangements, you can use the command-line utility xrandr
. I think the proprietary NVidia driver bypasses XRandR, so if you're using it, you'll have to use a dedicated NVidia tool.
Run xrandr
(with no argument) to see your monitor (screen) arrangement. You'll see lines like these:
DVI-0 connected 1600x1200+1600+0 (normal left inverted right x axis y axis) 408mm x 306mm
DVI-1 connected 1600x1200+0+0 (normal left inverted right x axis y axis) 408mm x 306mm
This example means that I have two monitors called DVI-0
and DVI-1
, and DVI-1
is at the top left (position +0+0
) while DVI-0
is to its right (position +1600+0
). To swap them, I would run
xrandr --output DVI-0 --left-of DVI-1
Your desktop environment probably has a way, but you don't say which one you're using (if any).
If your display driver is compatible with the XRandR extension, which is the standard X.org method for managing display resolutions and arrangements, you can use the command-line utility xrandr
. I think the proprietary NVidia driver bypasses XRandR, so if you're using it, you'll have to use a dedicated NVidia tool.
Run xrandr
(with no argument) to see your monitor (screen) arrangement. You'll see lines like these:
DVI-0 connected 1600x1200+1600+0 (normal left inverted right x axis y axis) 408mm x 306mm
DVI-1 connected 1600x1200+0+0 (normal left inverted right x axis y axis) 408mm x 306mm
This example means that I have two monitors called DVI-0
and DVI-1
, and DVI-1
is at the top left (position +0+0
) while DVI-0
is to its right (position +1600+0
). To swap them, I would run
xrandr --output DVI-0 --left-of DVI-1
answered Apr 4 '11 at 18:11
GillesGilles
546k12911111625
546k12911111625
I'm using Gnome. Having some problems with randr - pastebin.com/rZEjdN4B
– ripper234
Apr 5 '11 at 6:34
@ripper234: Your display driver isn't compatible with XRandR. What display driver are you using (not just nvidia/ati/intel, but which driver: nv/nouveau/nvidia/radeon/radeonhd/fglrx/…)? If you're not sure, attach the contents of/var/log/Xorg.0.log
to your question.
– Gilles
Apr 5 '11 at 7:18
here's the log, thanks. pastebin.com/wpNutkwp
– ripper234
Apr 5 '11 at 7:54
That swaps them around but now I can't scroll the mouse in the correct direction between them. When my mouse is on my right screen, when I scroll left, the mouse stops at the barrier of the right screen - it does not continue onto the left screen.
– 8bitjunkie
May 10 '18 at 11:31
add a comment |
I'm using Gnome. Having some problems with randr - pastebin.com/rZEjdN4B
– ripper234
Apr 5 '11 at 6:34
@ripper234: Your display driver isn't compatible with XRandR. What display driver are you using (not just nvidia/ati/intel, but which driver: nv/nouveau/nvidia/radeon/radeonhd/fglrx/…)? If you're not sure, attach the contents of/var/log/Xorg.0.log
to your question.
– Gilles
Apr 5 '11 at 7:18
here's the log, thanks. pastebin.com/wpNutkwp
– ripper234
Apr 5 '11 at 7:54
That swaps them around but now I can't scroll the mouse in the correct direction between them. When my mouse is on my right screen, when I scroll left, the mouse stops at the barrier of the right screen - it does not continue onto the left screen.
– 8bitjunkie
May 10 '18 at 11:31
I'm using Gnome. Having some problems with randr - pastebin.com/rZEjdN4B
– ripper234
Apr 5 '11 at 6:34
I'm using Gnome. Having some problems with randr - pastebin.com/rZEjdN4B
– ripper234
Apr 5 '11 at 6:34
@ripper234: Your display driver isn't compatible with XRandR. What display driver are you using (not just nvidia/ati/intel, but which driver: nv/nouveau/nvidia/radeon/radeonhd/fglrx/…)? If you're not sure, attach the contents of
/var/log/Xorg.0.log
to your question.– Gilles
Apr 5 '11 at 7:18
@ripper234: Your display driver isn't compatible with XRandR. What display driver are you using (not just nvidia/ati/intel, but which driver: nv/nouveau/nvidia/radeon/radeonhd/fglrx/…)? If you're not sure, attach the contents of
/var/log/Xorg.0.log
to your question.– Gilles
Apr 5 '11 at 7:18
here's the log, thanks. pastebin.com/wpNutkwp
– ripper234
Apr 5 '11 at 7:54
here's the log, thanks. pastebin.com/wpNutkwp
– ripper234
Apr 5 '11 at 7:54
That swaps them around but now I can't scroll the mouse in the correct direction between them. When my mouse is on my right screen, when I scroll left, the mouse stops at the barrier of the right screen - it does not continue onto the left screen.
– 8bitjunkie
May 10 '18 at 11:31
That swaps them around but now I can't scroll the mouse in the correct direction between them. When my mouse is on my right screen, when I scroll left, the mouse stops at the barrier of the right screen - it does not continue onto the left screen.
– 8bitjunkie
May 10 '18 at 11:31
add a comment |
I used the native Gnome Monitor Manager (from the System->Preferences menu) and it worked like a charm.
add a comment |
I used the native Gnome Monitor Manager (from the System->Preferences menu) and it worked like a charm.
add a comment |
I used the native Gnome Monitor Manager (from the System->Preferences menu) and it worked like a charm.
I used the native Gnome Monitor Manager (from the System->Preferences menu) and it worked like a charm.
answered Apr 5 '11 at 20:14
ripper234ripper234
9,399366986
9,399366986
add a comment |
add a comment |
I don't remember where I found this answer, but it works for me xrandr -o normal
add a comment |
I don't remember where I found this answer, but it works for me xrandr -o normal
add a comment |
I don't remember where I found this answer, but it works for me xrandr -o normal
I don't remember where I found this answer, but it works for me xrandr -o normal
answered Dec 3 '18 at 12:43
Vitaliy SobolVitaliy Sobol
1
1
add a comment |
add a comment |
Ubuntu 18.10 here with GNOME 3.30.2.
Just go to Settings > Devices > Displays.
The display arrangement can be rearranged, with simple drag-and-drop.
I had better experience doing this rather than adding xrandr --output DVI-0 --left-of DVI-1
to my /home/.profile
.
add a comment |
Ubuntu 18.10 here with GNOME 3.30.2.
Just go to Settings > Devices > Displays.
The display arrangement can be rearranged, with simple drag-and-drop.
I had better experience doing this rather than adding xrandr --output DVI-0 --left-of DVI-1
to my /home/.profile
.
add a comment |
Ubuntu 18.10 here with GNOME 3.30.2.
Just go to Settings > Devices > Displays.
The display arrangement can be rearranged, with simple drag-and-drop.
I had better experience doing this rather than adding xrandr --output DVI-0 --left-of DVI-1
to my /home/.profile
.
Ubuntu 18.10 here with GNOME 3.30.2.
Just go to Settings > Devices > Displays.
The display arrangement can be rearranged, with simple drag-and-drop.
I had better experience doing this rather than adding xrandr --output DVI-0 --left-of DVI-1
to my /home/.profile
.
answered Mar 27 at 14:00
AkhilAkhil
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f10589%2fhow-can-i-swap-my-two-screens-left-to-right%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
-gnome, monitors, multi-monitor, xorg, xrandr
Your upload only has the first 49 lines (and the relevant parts are later). Don't copy-paste from an editor, just upload the whole file.
– Gilles
Apr 5 '11 at 18:06