I have recently dual-booted my Windows 7 with Ubuntu 14.10 , and I am really enjoying it. I want to use all the Ubuntu wallpapers for Windows also, how can I get them? (Where are the Ubuntu wallpapers stored? As in , which directory, so that I can just copy them and get it on Windows 7 also.)
Asked
Active
Viewed 1,020 times
1
-
possible duplicate of Where are the Unity desktop wallpapers located? – Eric Carvalho Apr 08 '15 at 11:13
2 Answers
2
You can actually see where the current background is stored, by running (in a terminal window) the command:
gsettings get org.gnome.desktop.background picture-uri
I get for example:
'file:///usr/share/backgrounds/Mono_Lake_by_Angela_Henderson.jpg'
That means my wallpaper is stored in /usr/share/backgrounds
. In 14.10, that is the default location for wallpapers.

Rmano
- 31,947

Jacob Vlijm
- 83,767
1
Default Ubuntu wallpapers are stored in /usr/share/backgrounds/. For each Ubuntu release, there is a new package created for the wallpapers of that release. For 14.10, the package name is ubuntu-wallpapers-utopic, you can get to see the list of wallpapers by issuing the command
dpkg -L ubuntu-wallpapers-utopic | grep .jpg$
You can also find the wallpapers for the 14.10 release in http://packages.ubuntu.com/utopic/all/ubuntu-wallpapers-utopic/filelist (files that end with .jpg).

Anthony Wong
- 921
- 6
- 20