How do I get my desktop Icons back on my primary display?Issues with 11.10 display resolutionUnable to change the refresh rate to 60hz with xrandrCan't add Custom ResolutionCant get HD resolution working on second monitor, nvidia GT640 card, Ubuntu 14.04How to make video resolution setting permanent?Ubuntu 16.04 resolution stuck at 4k16.04 Display resolution changed itself without an upgrade/update and can't get it backScreen resolution twice as wide
Tool/Editor to visualize optimization problem files and solutions
What does “studies need to be taken with more than the usual grain of salt” mean?
Antonym for “boilerplate” or “cookie-cutter”
NFL football incentives
What techniques can I use to seduce a PC without arousing suspicion of ulterior motives?
What is this second smaller runway next to London City Airport?
network cable - why T-568A and B standard
where does black come from in CMYK color mode?
How to answer to the "We do not want to create any precedent" argument in salary negotiation?
Why are the Ukraine related congressional hearings behind closed doors?
Why is Eastern Switzerland called Suisse orientale in French?
Every infinite group has a non-trivial subgroup
On the etymology of "Stereophonic"
Coworkers accusing me of "cheating" for working more efficiently
Pass variable to sed and change backslash to forward slash
Equivalent of phrase 'emu parade' in other English-speaking places
Make a haystack (with a needle)
Does animal blood, esp. human, really have similar salinity as ocean water, and does that prove anything about evolution?
How to deal with non-stop callers in the service desk
Why are so many cities in the list of 50 most violent cities in the world located in South and Central America?
Is a for loop using arrays better than using field splitting on a simple variable?
Why would Climate activists disrupt public transport?
Why is more music written in sharp keys than flat keys?
If a tournament advertises G/30, can either player demand G/25 d5?
How do I get my desktop Icons back on my primary display?
Issues with 11.10 display resolutionUnable to change the refresh rate to 60hz with xrandrCan't add Custom ResolutionCant get HD resolution working on second monitor, nvidia GT640 card, Ubuntu 14.04How to make video resolution setting permanent?Ubuntu 16.04 resolution stuck at 4k16.04 Display resolution changed itself without an upgrade/update and can't get it backScreen resolution twice as wide
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
So, I have read several questions - with and without answers - and though this is similar to others, I have found nothing particular to the issues I am experiencing. It is a three-part problem and I think they're all related erego why they are being posed as a single question.
- My desktop icons are all on my secondary display and I can't move them back.
- I can no longer maximize windows on my primary display by dragging them to the top of the screen, this results in them being dragged to a desktop with no display that shouldn't be an accessible area anyway.
- After hours of searching for solutions, I was finally able to write a script that will create and assign the proper resolution and position to my secondary display, and leave it alone if it isn't connected. The catch there is that I have to log in first, so prior to login I am stuck with a sideways login screen that is, oddly enough, on my secondary display.
I am using an older VAIO laptop with a VGA output (hence the need to create the proper resolution for my external monitor) and running Ubuntu MATE 16.04.
Here's a screen shot:
And here's my script: feel free to do whatever you want with it. It may be of use to people with display configuration issues.
#!/bin/bash
xrandr --auto
cvt 1920 1080
xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode VGA1 1920x1080_60.00
xrandr --output VGA1 --mode 1920x1080_60.00
xrandr --output VGA1 --rotate right
xrandr --output LVDS1 --pos 0x1281 --output VGA1 --pos 1281x0
xrandr --auto
multiple-monitors display-resolution xrandr ubuntu-mate desktop-icons
add a comment
|
So, I have read several questions - with and without answers - and though this is similar to others, I have found nothing particular to the issues I am experiencing. It is a three-part problem and I think they're all related erego why they are being posed as a single question.
- My desktop icons are all on my secondary display and I can't move them back.
- I can no longer maximize windows on my primary display by dragging them to the top of the screen, this results in them being dragged to a desktop with no display that shouldn't be an accessible area anyway.
- After hours of searching for solutions, I was finally able to write a script that will create and assign the proper resolution and position to my secondary display, and leave it alone if it isn't connected. The catch there is that I have to log in first, so prior to login I am stuck with a sideways login screen that is, oddly enough, on my secondary display.
I am using an older VAIO laptop with a VGA output (hence the need to create the proper resolution for my external monitor) and running Ubuntu MATE 16.04.
Here's a screen shot:
And here's my script: feel free to do whatever you want with it. It may be of use to people with display configuration issues.
#!/bin/bash
xrandr --auto
cvt 1920 1080
xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode VGA1 1920x1080_60.00
xrandr --output VGA1 --mode 1920x1080_60.00
xrandr --output VGA1 --rotate right
xrandr --output LVDS1 --pos 0x1281 --output VGA1 --pos 1281x0
xrandr --auto
multiple-monitors display-resolution xrandr ubuntu-mate desktop-icons
add a comment
|
So, I have read several questions - with and without answers - and though this is similar to others, I have found nothing particular to the issues I am experiencing. It is a three-part problem and I think they're all related erego why they are being posed as a single question.
- My desktop icons are all on my secondary display and I can't move them back.
- I can no longer maximize windows on my primary display by dragging them to the top of the screen, this results in them being dragged to a desktop with no display that shouldn't be an accessible area anyway.
- After hours of searching for solutions, I was finally able to write a script that will create and assign the proper resolution and position to my secondary display, and leave it alone if it isn't connected. The catch there is that I have to log in first, so prior to login I am stuck with a sideways login screen that is, oddly enough, on my secondary display.
I am using an older VAIO laptop with a VGA output (hence the need to create the proper resolution for my external monitor) and running Ubuntu MATE 16.04.
Here's a screen shot:
And here's my script: feel free to do whatever you want with it. It may be of use to people with display configuration issues.
#!/bin/bash
xrandr --auto
cvt 1920 1080
xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode VGA1 1920x1080_60.00
xrandr --output VGA1 --mode 1920x1080_60.00
xrandr --output VGA1 --rotate right
xrandr --output LVDS1 --pos 0x1281 --output VGA1 --pos 1281x0
xrandr --auto
multiple-monitors display-resolution xrandr ubuntu-mate desktop-icons
So, I have read several questions - with and without answers - and though this is similar to others, I have found nothing particular to the issues I am experiencing. It is a three-part problem and I think they're all related erego why they are being posed as a single question.
- My desktop icons are all on my secondary display and I can't move them back.
- I can no longer maximize windows on my primary display by dragging them to the top of the screen, this results in them being dragged to a desktop with no display that shouldn't be an accessible area anyway.
- After hours of searching for solutions, I was finally able to write a script that will create and assign the proper resolution and position to my secondary display, and leave it alone if it isn't connected. The catch there is that I have to log in first, so prior to login I am stuck with a sideways login screen that is, oddly enough, on my secondary display.
I am using an older VAIO laptop with a VGA output (hence the need to create the proper resolution for my external monitor) and running Ubuntu MATE 16.04.
Here's a screen shot:
And here's my script: feel free to do whatever you want with it. It may be of use to people with display configuration issues.
#!/bin/bash
xrandr --auto
cvt 1920 1080
xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode VGA1 1920x1080_60.00
xrandr --output VGA1 --mode 1920x1080_60.00
xrandr --output VGA1 --rotate right
xrandr --output LVDS1 --pos 0x1281 --output VGA1 --pos 1281x0
xrandr --auto
multiple-monitors display-resolution xrandr ubuntu-mate desktop-icons
multiple-monitors display-resolution xrandr ubuntu-mate desktop-icons
edited Jun 20 at 0:49
WinEunuuchs2Unix
59.4k18 gold badges119 silver badges234 bronze badges
59.4k18 gold badges119 silver badges234 bronze badges
asked Jun 5 '16 at 22:20
Bus42Bus42
1052 gold badges2 silver badges11 bronze badges
1052 gold badges2 silver badges11 bronze badges
add a comment
|
add a comment
|
7 Answers
7
active
oldest
votes
I fixed this in in Display settings (System Settings --> Display). The three monitors I use are different sizes, but after dragging the monitors so that they were aligned along the bottom axis, my icons returned my primary monitor on the left
Like this
Hmm, I had problems with this, snapping didn't allow them to be aligned. I usedarandr
to fix alignment, but sadly icons still refuse to stay on my laptop screen.
– Gringo Suave
Oct 17 '16 at 1:38
add a comment
|
I am running Gnome and have a dual monitor setup. If I hit Alt+Space a menu pops up on my primary display and "Move to Monitor Right" or "Move to Monitor Left" is highlighted. Click that selection and the icons move to the other screen.
the problem was the icons showing up on the secondary display and not being able to put them on the primary. I never figured it out, but I switched flavors to Ubuntu Gnome and that fixed everything and more.
– Bus42
Jan 1 '17 at 20:51
add a comment
|
On Ubuntu 16.04, I solved this problem by duplicating desktop icons in the desktop folder: link1, link2,... and link1(copy), link2(copy), for instance. Then I place the duplicate icons as I wish in the two desktops with respect to the two monitors. Everything is fine even if I do monitor manipulations or reboot, etc...
In your case, if you have three monitors, you need three links for the same thing in the desktop folder.
I don't think OP wants the icons to appear on each monitor, just on the primary one...
– Zanna
Aug 3 '17 at 9:24
add a comment
|
solved, right click on task-bar, under taskbar tab (box that opens) under 'multiple displays' panel, tick 'Show taskbar on all displays' -> in drop down box below box you just ticked is called ' Show task bar buttons on:' select 'All taskbars'. click apply,
problem solved.
add a comment
|
Struggled with this and couldn't find an answer through searching. However, I discovered that the Gnome Tweak Tool took care of this. Just open the Desktop tab, and turn Icons off and on. They jumped right back to the left hand, primary monitor. Plus there are lots of other good tweaks in the tool.
add a comment
|
I wrote the iconic script to give control over which monitor icons are placed on. It also ensures icons don't get placed into the "black hole" that exists when monitors of different resolutions are used.
Here are a few screenshots of iconic
to give you an idea of how it works.
iconic Monitors Notebook General Tab screenshot
On this notebook tab you can also specify the number of seconds a test will last. Press the Test button to place icons on the Desktop using currently defined each time you change the reserved screen space.
iconic Monitors Notebook Monitor 3 tab
Assign a user friendly name to each monitor. Set the number of rows and columns to utilize for icon placement on each monitor.
Use the Test button to view what icon placement after number or columns and/or rows are changed.
add a comment
|
😭 The Issue
Icons stay in the top blank black spot of the smaller display (usually laptop)
✅ Ugly Fix
File Manager > Desktop > Drag icons to the smaller display & they will relocate
- Pros: Very quick
- Cons: Repeat every time a new icon is added
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',
autoActivateHeartbeat: false,
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/4.0/"u003ecc by-sa 4.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%2f783280%2fhow-do-i-get-my-desktop-icons-back-on-my-primary-display%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
7 Answers
7
active
oldest
votes
7 Answers
7
active
oldest
votes
active
oldest
votes
active
oldest
votes
I fixed this in in Display settings (System Settings --> Display). The three monitors I use are different sizes, but after dragging the monitors so that they were aligned along the bottom axis, my icons returned my primary monitor on the left
Like this
Hmm, I had problems with this, snapping didn't allow them to be aligned. I usedarandr
to fix alignment, but sadly icons still refuse to stay on my laptop screen.
– Gringo Suave
Oct 17 '16 at 1:38
add a comment
|
I fixed this in in Display settings (System Settings --> Display). The three monitors I use are different sizes, but after dragging the monitors so that they were aligned along the bottom axis, my icons returned my primary monitor on the left
Like this
Hmm, I had problems with this, snapping didn't allow them to be aligned. I usedarandr
to fix alignment, but sadly icons still refuse to stay on my laptop screen.
– Gringo Suave
Oct 17 '16 at 1:38
add a comment
|
I fixed this in in Display settings (System Settings --> Display). The three monitors I use are different sizes, but after dragging the monitors so that they were aligned along the bottom axis, my icons returned my primary monitor on the left
Like this
I fixed this in in Display settings (System Settings --> Display). The three monitors I use are different sizes, but after dragging the monitors so that they were aligned along the bottom axis, my icons returned my primary monitor on the left
Like this
edited Jun 27 '16 at 17:17
grooveplex
2,2651 gold badge18 silver badges35 bronze badges
2,2651 gold badge18 silver badges35 bronze badges
answered Jun 27 '16 at 16:46
kevinbuchanjrkevinbuchanjr
561 bronze badge
561 bronze badge
Hmm, I had problems with this, snapping didn't allow them to be aligned. I usedarandr
to fix alignment, but sadly icons still refuse to stay on my laptop screen.
– Gringo Suave
Oct 17 '16 at 1:38
add a comment
|
Hmm, I had problems with this, snapping didn't allow them to be aligned. I usedarandr
to fix alignment, but sadly icons still refuse to stay on my laptop screen.
– Gringo Suave
Oct 17 '16 at 1:38
Hmm, I had problems with this, snapping didn't allow them to be aligned. I used
arandr
to fix alignment, but sadly icons still refuse to stay on my laptop screen.– Gringo Suave
Oct 17 '16 at 1:38
Hmm, I had problems with this, snapping didn't allow them to be aligned. I used
arandr
to fix alignment, but sadly icons still refuse to stay on my laptop screen.– Gringo Suave
Oct 17 '16 at 1:38
add a comment
|
I am running Gnome and have a dual monitor setup. If I hit Alt+Space a menu pops up on my primary display and "Move to Monitor Right" or "Move to Monitor Left" is highlighted. Click that selection and the icons move to the other screen.
the problem was the icons showing up on the secondary display and not being able to put them on the primary. I never figured it out, but I switched flavors to Ubuntu Gnome and that fixed everything and more.
– Bus42
Jan 1 '17 at 20:51
add a comment
|
I am running Gnome and have a dual monitor setup. If I hit Alt+Space a menu pops up on my primary display and "Move to Monitor Right" or "Move to Monitor Left" is highlighted. Click that selection and the icons move to the other screen.
the problem was the icons showing up on the secondary display and not being able to put them on the primary. I never figured it out, but I switched flavors to Ubuntu Gnome and that fixed everything and more.
– Bus42
Jan 1 '17 at 20:51
add a comment
|
I am running Gnome and have a dual monitor setup. If I hit Alt+Space a menu pops up on my primary display and "Move to Monitor Right" or "Move to Monitor Left" is highlighted. Click that selection and the icons move to the other screen.
I am running Gnome and have a dual monitor setup. If I hit Alt+Space a menu pops up on my primary display and "Move to Monitor Right" or "Move to Monitor Left" is highlighted. Click that selection and the icons move to the other screen.
edited Dec 31 '16 at 13:45
Zanna
53.6k15 gold badges150 silver badges252 bronze badges
53.6k15 gold badges150 silver badges252 bronze badges
answered Dec 31 '16 at 12:43
Chris BruniChris Bruni
211 bronze badge
211 bronze badge
the problem was the icons showing up on the secondary display and not being able to put them on the primary. I never figured it out, but I switched flavors to Ubuntu Gnome and that fixed everything and more.
– Bus42
Jan 1 '17 at 20:51
add a comment
|
the problem was the icons showing up on the secondary display and not being able to put them on the primary. I never figured it out, but I switched flavors to Ubuntu Gnome and that fixed everything and more.
– Bus42
Jan 1 '17 at 20:51
the problem was the icons showing up on the secondary display and not being able to put them on the primary. I never figured it out, but I switched flavors to Ubuntu Gnome and that fixed everything and more.
– Bus42
Jan 1 '17 at 20:51
the problem was the icons showing up on the secondary display and not being able to put them on the primary. I never figured it out, but I switched flavors to Ubuntu Gnome and that fixed everything and more.
– Bus42
Jan 1 '17 at 20:51
add a comment
|
On Ubuntu 16.04, I solved this problem by duplicating desktop icons in the desktop folder: link1, link2,... and link1(copy), link2(copy), for instance. Then I place the duplicate icons as I wish in the two desktops with respect to the two monitors. Everything is fine even if I do monitor manipulations or reboot, etc...
In your case, if you have three monitors, you need three links for the same thing in the desktop folder.
I don't think OP wants the icons to appear on each monitor, just on the primary one...
– Zanna
Aug 3 '17 at 9:24
add a comment
|
On Ubuntu 16.04, I solved this problem by duplicating desktop icons in the desktop folder: link1, link2,... and link1(copy), link2(copy), for instance. Then I place the duplicate icons as I wish in the two desktops with respect to the two monitors. Everything is fine even if I do monitor manipulations or reboot, etc...
In your case, if you have three monitors, you need three links for the same thing in the desktop folder.
I don't think OP wants the icons to appear on each monitor, just on the primary one...
– Zanna
Aug 3 '17 at 9:24
add a comment
|
On Ubuntu 16.04, I solved this problem by duplicating desktop icons in the desktop folder: link1, link2,... and link1(copy), link2(copy), for instance. Then I place the duplicate icons as I wish in the two desktops with respect to the two monitors. Everything is fine even if I do monitor manipulations or reboot, etc...
In your case, if you have three monitors, you need three links for the same thing in the desktop folder.
On Ubuntu 16.04, I solved this problem by duplicating desktop icons in the desktop folder: link1, link2,... and link1(copy), link2(copy), for instance. Then I place the duplicate icons as I wish in the two desktops with respect to the two monitors. Everything is fine even if I do monitor manipulations or reboot, etc...
In your case, if you have three monitors, you need three links for the same thing in the desktop folder.
edited Aug 3 '17 at 9:22
Zanna
53.6k15 gold badges150 silver badges252 bronze badges
53.6k15 gold badges150 silver badges252 bronze badges
answered Aug 3 '17 at 8:42
AlexAlex
1
1
I don't think OP wants the icons to appear on each monitor, just on the primary one...
– Zanna
Aug 3 '17 at 9:24
add a comment
|
I don't think OP wants the icons to appear on each monitor, just on the primary one...
– Zanna
Aug 3 '17 at 9:24
I don't think OP wants the icons to appear on each monitor, just on the primary one...
– Zanna
Aug 3 '17 at 9:24
I don't think OP wants the icons to appear on each monitor, just on the primary one...
– Zanna
Aug 3 '17 at 9:24
add a comment
|
solved, right click on task-bar, under taskbar tab (box that opens) under 'multiple displays' panel, tick 'Show taskbar on all displays' -> in drop down box below box you just ticked is called ' Show task bar buttons on:' select 'All taskbars'. click apply,
problem solved.
add a comment
|
solved, right click on task-bar, under taskbar tab (box that opens) under 'multiple displays' panel, tick 'Show taskbar on all displays' -> in drop down box below box you just ticked is called ' Show task bar buttons on:' select 'All taskbars'. click apply,
problem solved.
add a comment
|
solved, right click on task-bar, under taskbar tab (box that opens) under 'multiple displays' panel, tick 'Show taskbar on all displays' -> in drop down box below box you just ticked is called ' Show task bar buttons on:' select 'All taskbars'. click apply,
problem solved.
solved, right click on task-bar, under taskbar tab (box that opens) under 'multiple displays' panel, tick 'Show taskbar on all displays' -> in drop down box below box you just ticked is called ' Show task bar buttons on:' select 'All taskbars'. click apply,
problem solved.
answered Apr 23 '18 at 6:44
daviddavid
1
1
add a comment
|
add a comment
|
Struggled with this and couldn't find an answer through searching. However, I discovered that the Gnome Tweak Tool took care of this. Just open the Desktop tab, and turn Icons off and on. They jumped right back to the left hand, primary monitor. Plus there are lots of other good tweaks in the tool.
add a comment
|
Struggled with this and couldn't find an answer through searching. However, I discovered that the Gnome Tweak Tool took care of this. Just open the Desktop tab, and turn Icons off and on. They jumped right back to the left hand, primary monitor. Plus there are lots of other good tweaks in the tool.
add a comment
|
Struggled with this and couldn't find an answer through searching. However, I discovered that the Gnome Tweak Tool took care of this. Just open the Desktop tab, and turn Icons off and on. They jumped right back to the left hand, primary monitor. Plus there are lots of other good tweaks in the tool.
Struggled with this and couldn't find an answer through searching. However, I discovered that the Gnome Tweak Tool took care of this. Just open the Desktop tab, and turn Icons off and on. They jumped right back to the left hand, primary monitor. Plus there are lots of other good tweaks in the tool.
answered May 30 at 13:01
NetDocNetDoc
111 bronze badge
111 bronze badge
add a comment
|
add a comment
|
I wrote the iconic script to give control over which monitor icons are placed on. It also ensures icons don't get placed into the "black hole" that exists when monitors of different resolutions are used.
Here are a few screenshots of iconic
to give you an idea of how it works.
iconic Monitors Notebook General Tab screenshot
On this notebook tab you can also specify the number of seconds a test will last. Press the Test button to place icons on the Desktop using currently defined each time you change the reserved screen space.
iconic Monitors Notebook Monitor 3 tab
Assign a user friendly name to each monitor. Set the number of rows and columns to utilize for icon placement on each monitor.
Use the Test button to view what icon placement after number or columns and/or rows are changed.
add a comment
|
I wrote the iconic script to give control over which monitor icons are placed on. It also ensures icons don't get placed into the "black hole" that exists when monitors of different resolutions are used.
Here are a few screenshots of iconic
to give you an idea of how it works.
iconic Monitors Notebook General Tab screenshot
On this notebook tab you can also specify the number of seconds a test will last. Press the Test button to place icons on the Desktop using currently defined each time you change the reserved screen space.
iconic Monitors Notebook Monitor 3 tab
Assign a user friendly name to each monitor. Set the number of rows and columns to utilize for icon placement on each monitor.
Use the Test button to view what icon placement after number or columns and/or rows are changed.
add a comment
|
I wrote the iconic script to give control over which monitor icons are placed on. It also ensures icons don't get placed into the "black hole" that exists when monitors of different resolutions are used.
Here are a few screenshots of iconic
to give you an idea of how it works.
iconic Monitors Notebook General Tab screenshot
On this notebook tab you can also specify the number of seconds a test will last. Press the Test button to place icons on the Desktop using currently defined each time you change the reserved screen space.
iconic Monitors Notebook Monitor 3 tab
Assign a user friendly name to each monitor. Set the number of rows and columns to utilize for icon placement on each monitor.
Use the Test button to view what icon placement after number or columns and/or rows are changed.
I wrote the iconic script to give control over which monitor icons are placed on. It also ensures icons don't get placed into the "black hole" that exists when monitors of different resolutions are used.
Here are a few screenshots of iconic
to give you an idea of how it works.
iconic Monitors Notebook General Tab screenshot
On this notebook tab you can also specify the number of seconds a test will last. Press the Test button to place icons on the Desktop using currently defined each time you change the reserved screen space.
iconic Monitors Notebook Monitor 3 tab
Assign a user friendly name to each monitor. Set the number of rows and columns to utilize for icon placement on each monitor.
Use the Test button to view what icon placement after number or columns and/or rows are changed.
edited Jun 2 at 16:10
answered Jun 2 at 15:51
WinEunuuchs2UnixWinEunuuchs2Unix
59.4k18 gold badges119 silver badges234 bronze badges
59.4k18 gold badges119 silver badges234 bronze badges
add a comment
|
add a comment
|
😭 The Issue
Icons stay in the top blank black spot of the smaller display (usually laptop)
✅ Ugly Fix
File Manager > Desktop > Drag icons to the smaller display & they will relocate
- Pros: Very quick
- Cons: Repeat every time a new icon is added
add a comment
|
😭 The Issue
Icons stay in the top blank black spot of the smaller display (usually laptop)
✅ Ugly Fix
File Manager > Desktop > Drag icons to the smaller display & they will relocate
- Pros: Very quick
- Cons: Repeat every time a new icon is added
add a comment
|
😭 The Issue
Icons stay in the top blank black spot of the smaller display (usually laptop)
✅ Ugly Fix
File Manager > Desktop > Drag icons to the smaller display & they will relocate
- Pros: Very quick
- Cons: Repeat every time a new icon is added
😭 The Issue
Icons stay in the top blank black spot of the smaller display (usually laptop)
✅ Ugly Fix
File Manager > Desktop > Drag icons to the smaller display & they will relocate
- Pros: Very quick
- Cons: Repeat every time a new icon is added
edited Feb 28 at 0:41
anonymous2
3,5474 gold badges24 silver badges52 bronze badges
3,5474 gold badges24 silver badges52 bronze badges
answered Feb 27 at 22:10
mi-homi-ho
12 bronze badges
12 bronze badges
add a comment
|
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.
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%2f783280%2fhow-do-i-get-my-desktop-icons-back-on-my-primary-display%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