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;









7

















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.



  1. My desktop icons are all on my secondary display and I can't move them back.

  2. 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.

  3. 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:



Monitor layout, icons, and example of window problem



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









share|improve this question


































    7

















    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.



    1. My desktop icons are all on my secondary display and I can't move them back.

    2. 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.

    3. 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:



    Monitor layout, icons, and example of window problem



    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









    share|improve this question






























      7












      7








      7


      2






      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.



      1. My desktop icons are all on my secondary display and I can't move them back.

      2. 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.

      3. 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:



      Monitor layout, icons, and example of window problem



      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









      share|improve this question

















      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.



      1. My desktop icons are all on my secondary display and I can't move them back.

      2. 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.

      3. 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:



      Monitor layout, icons, and example of window problem



      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






      share|improve this question
















      share|improve this question













      share|improve this question




      share|improve this question








      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























          7 Answers
          7






          active

          oldest

          votes


















          4


















          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



          Display settings






          share|improve this answer




























          • 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



















          2


















          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.






          share|improve this answer




























          • 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


















          0


















          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.






          share|improve this answer




























          • 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


















          0


















          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.






          share|improve this answer

































            0


















            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.






            share|improve this answer

































              0


















              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



              iconic monitors general.png



              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



              iconic monitors monitor 3.png



              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.






              share|improve this answer



































                -2


















                😭 The Issue



                Icons stay in the top blank black spot of the smaller display (usually laptop)



                screenshot



                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





                share|improve this answer





























                  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
                  );



                  );














                  draft saved

                  draft discarded
















                  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









                  4


















                  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



                  Display settings






                  share|improve this answer




























                  • 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
















                  4


















                  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



                  Display settings






                  share|improve this answer




























                  • 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














                  4














                  4










                  4









                  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



                  Display settings






                  share|improve this answer
















                  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



                  Display settings







                  share|improve this answer















                  share|improve this answer




                  share|improve this answer








                  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 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

















                  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














                  2


















                  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.






                  share|improve this answer




























                  • 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















                  2


















                  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.






                  share|improve this answer




























                  • 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













                  2














                  2










                  2









                  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.






                  share|improve this answer
















                  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.







                  share|improve this answer















                  share|improve this answer




                  share|improve this answer








                  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

















                  • 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











                  0


















                  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.






                  share|improve this answer




























                  • 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















                  0


















                  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.






                  share|improve this answer




























                  • 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













                  0














                  0










                  0









                  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.






                  share|improve this answer
















                  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.







                  share|improve this answer















                  share|improve this answer




                  share|improve this answer








                  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

















                  • 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











                  0


















                  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.






                  share|improve this answer






























                    0


















                    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.






                    share|improve this answer




























                      0














                      0










                      0









                      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.






                      share|improve this answer














                      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.







                      share|improve this answer













                      share|improve this answer




                      share|improve this answer










                      answered Apr 23 '18 at 6:44









                      daviddavid

                      1




                      1
























                          0


















                          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.






                          share|improve this answer






























                            0


















                            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.






                            share|improve this answer




























                              0














                              0










                              0









                              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.






                              share|improve this answer














                              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.







                              share|improve this answer













                              share|improve this answer




                              share|improve this answer










                              answered May 30 at 13:01









                              NetDocNetDoc

                              111 bronze badge




                              111 bronze badge
























                                  0


















                                  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



                                  iconic monitors general.png



                                  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



                                  iconic monitors monitor 3.png



                                  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.






                                  share|improve this answer
































                                    0


















                                    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



                                    iconic monitors general.png



                                    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



                                    iconic monitors monitor 3.png



                                    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.






                                    share|improve this answer






























                                      0














                                      0










                                      0









                                      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



                                      iconic monitors general.png



                                      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



                                      iconic monitors monitor 3.png



                                      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.






                                      share|improve this answer
















                                      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



                                      iconic monitors general.png



                                      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



                                      iconic monitors monitor 3.png



                                      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.







                                      share|improve this answer















                                      share|improve this answer




                                      share|improve this answer








                                      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
























                                          -2


















                                          😭 The Issue



                                          Icons stay in the top blank black spot of the smaller display (usually laptop)



                                          screenshot



                                          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





                                          share|improve this answer
































                                            -2


















                                            😭 The Issue



                                            Icons stay in the top blank black spot of the smaller display (usually laptop)



                                            screenshot



                                            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





                                            share|improve this answer






























                                              -2














                                              -2










                                              -2









                                              😭 The Issue



                                              Icons stay in the top blank black spot of the smaller display (usually laptop)



                                              screenshot



                                              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





                                              share|improve this answer
















                                              😭 The Issue



                                              Icons stay in the top blank black spot of the smaller display (usually laptop)



                                              screenshot



                                              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






                                              share|improve this answer















                                              share|improve this answer




                                              share|improve this answer








                                              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































                                                  draft saved

                                                  draft discarded















































                                                  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.




                                                  draft saved


                                                  draft discarded














                                                  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





















































                                                  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









                                                  Popular posts from this blog

                                                  Tamil (spriik) Luke uk diar | Nawigatjuun

                                                  Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

                                                  Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?