53

I have dual monitor set up in Ubuntu 11.10. I want to have a single wallpaper spanned across both monitors. How do I do this?

megabubbletea
  • 633
  • 1
  • 5
  • 6
  • Might want to note, although nitrogen doesn't appear to change the wallpaper of nvidia machines, it has a cool side effect that still might make it worthwhile. If the changes via nitrogen occur more recently than your changes in the default ubuntu desktop manager, the images will show up in the background of terminals, if their background is set to transparent. So you essentially have a 'hidden' wallpaper. –  Feb 28 '13 at 20:40
  • 1
    System settings > appearance - 'Span' instead of 'zoom', and most images will have to be scaled to be larger and then cropped into the aspect ratio which is going to be much wider if the monitors are placed side by side. – Vass Sep 12 '16 at 17:41
  • Best to use the terminal command gsettings. No extra software needed. gsettings set org.gnome.desktop.background picture-options[KEY] 'centered'[VALUE] See this answer here: https://askubuntu.com/a/1181775/96104 – Kyle Coots Jun 10 '21 at 11:01

8 Answers8

69

if using gnome-shell, in tweak tool under desktop there is an option to have the image span the desktop. This makes it go across both monitors(or all).

No Nitrogen Necessary

Unity also has this same option as shown below:

Appearance options - span

Tom Brossman
  • 13,111
  • 4
    +1 This is by far the simplest answer. For two 1080p monitors just crop an image to 3840x1080, select it, then choose 'span' in the options. – Tom Brossman Mar 18 '14 at 09:39
  • 2
    The options have changed since the original question. In 2011 , at the time of the question, there was no option to "Span". – Panther Jun 06 '14 at 21:48
  • 10
    None of this even exists in Ubuntu 18.04. – aalaap May 02 '18 at 05:16
  • Works for mint as well. Better view in dual monitors with 1920x1080 res with picture with dimension 3840x1080 – sgiri Jun 18 '18 at 14:14
  • 8
    @aalaap For Ubuntu 18.04, you need to install the gnome-tweaks tool manually. When you start it, under 'Appearance', you will find the option to span the desktop and lock screen wallpapers. – likeitlikeit Oct 27 '18 at 08:34
  • Thanks. Worked for me. :+1 – Vinay Jeurkar Aug 19 '19 at 04:12
  • BTW if you have 3 monitors but got a wallpaper only prepared for 2, you have to disable(close my laptop lid, in my case) the 3rd one in the bottom. Now it works, but I have 2 monitors instead of 3. OK though – WesternGun Aug 29 '23 at 08:28
25

First you need a wallpaper large enough for both monitors. You can either make one with the gimp or down load one. Alternately you can use a separate image for each monitor.

You can then install a handy little application, nitrogen

sudo apt-get install nitrogen

You then run nitrogen with the path to the directory with your picture(s)

nitrogen ~/Pictures

And select the image. At the bottom of nitrogen, select "automatic" and "Full screen" as options. alternately you can use nitrogen to set a separate image on each screen, up to you (sort of depends on your background images).

nitrogen

Panther
  • 102,067
17

For Ubuntu 16.04 and higher versions which don't offer a 'span' option in the settings or no options at all, you can run the following command to force a span setting:

gsettings set org.gnome.desktop.background picture-options spanned

The effect is instant.

I've tried this with 18.04, but it seems like it should work with 16.04 and up.

Source

karel
  • 114,770
aalaap
  • 408
16

Nitrogen answer works, but another tweak is necessary. Run Advanced Settings in Gnome Tweak Tool, go to Desktop section and switch Have file manager handle the desktop off. Then wallpapers set via Nitrogen will be displayed.

If you do not have the Gnome Tweak Tool, you can use this command instead. It's an easier solution, too:

gsettings set org.gnome.desktop.background show-desktop-icons false

However there is strong disadvantage. All icons disappear from the desktop and the context menu can't be invoked. Unless you need icons on desktop this solution may be useful for you.

Daniel
  • 446
topr
  • 431
  • Thankyou for your answer. Although that is a good solution I still want my desktop icons. I hope Ubuntu will fully support multiple monitor wallpapers better in future releases. – megabubbletea Jan 27 '12 at 06:45
  • As @topr mentioned, Nitrogen will not give you the option of desktop icons and context menus. A much better option is to combine your images in a single file, and use "span over multiple monitors" option. You ca combine images with ImageMagick, using convert +append -gravity south wallpaper*.jpg combined_wallpaper.jpg – Gui Ambros May 24 '14 at 18:55
13

I do not appear to be able to add a comment to an answer due to my low rep (lolz), so this is meant to be on @topr's answer.

I am the author of Nitrogen and there is code in there to detect a gnome desktop and set it properly so that you don't need to make this change, but it appears to not be functioning on modern Ubuntus. I will investigate.

Issue: https://github.com/l3ib/nitrogen/issues/16

Dave Foster
  • 281
  • 2
  • 4
  • using the gnome-tweak-tool solved this issue... see here: http://askubuntu.com/questions/390367/using-different-wallpapers-on-multiple-monitors-gnome-2-compiz – m13r Jun 18 '15 at 13:26
7

Using GNOME-tweaks

sudo apt install gnome-tweak-tool

enter image description here

2

Take a look at this link: http://www.virtual-nexus-inc.com/news/2011/09/21/ubuntu-11-04-dual-monitor-backgrounds-are-easy-with-shotwell/

you can use shotwell to resize te image as your combined monotors resolution then set it as background using the default image viewer of ubuntu.

ValdaR
  • 21
  • 1
0

I will suggest the same as @Alex Nolasco, however, the gnome-tweak-tool has no longer support for Ubuntu 22.04 LTS (Package 'gnome-tweak-tool' has no installation candidate)

Instead of that you can install the latest gnome-tweaks

sudo apt install gnome-tweaks

and run gnome-tweaks, go to the Adjustment and select Spanned from the drop down menu. Do not forget to use high resolution image to get the best view.

enter image description here

bim
  • 111