Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

How to move Unity Launcher to a different monitor?

Writer Andrew Henderson

I have two monitors. The left monitor is set as primary, but the Unity Launcher appears on the right monitor.

dual screen issue

How can I move it to the other monitor?

2

7 Answers

This is a bug:

(taken from the bug report)

Permanent workaround (requires logging back in again):

Edit ~/.config/monitors.xml, find the monitor you want the launcher to display on and change:

<primary>no</primary>

to:

<primary>yes</primary>

Now log out and log in again.

Temporary workaround (no logout required):

Open a Terminal window and...

  1. Run xrandr to find the NAME of the output you would like to make primary.
  2. Run xrandr --output NAME --primary && nohup unity --replace &
3

In Ubuntu 20.04, it's under Settings > Appearance > Dock > Show on:

Screenshot of Settings/Appearance window

If you are using Ubuntu 13.10 and up

On the same window where you set your screen orientation (System Settings>Displays:Launcher Placement) you can set the screen(s) on which the launcher show show up:

enter image description here

It isn't configurable in 11.04, but it is a known issue and I think I've read that it's fixed in 11.10. Not sure though.

A couple things to try. You can follow the instructions here.

In summary, run xrandr to get a list of your monitors. The first one listed (e.g. VGA1) will be your primary monitor. Then run sudo xrandr --output VGA2 --primary to make your second monitor primary. Note that your monitors may not be called VGA1 and VGA2. You'll need to look at the xrandr output to find the correct names.

Secondly, your monitors look like they might have the same connection type. If that's the case, you could try switching the cables they use to connect.

Lastly, if all else fails, you could just switch the physical location of the monitors. Maybe not the best solution, but also probably the simplest.

1

ubuntu 18.10

go to display and set the primary display to the screen which you want to have the launcher:

enter image description here

for 11.10 there is no workaround, but there is a ppa on launchpad (unsupported) that fixes the issue.

To install:

  1. sudo add-apt-repository ppa:vanvugt/unity
  2. sudo apt-get update
  3. sudo apt-get install unity

You will need to relog for the changes to take effect.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy