linux_mint_wallpaper

Linux Mint Wallpaper Archive

This archive contains all Linux Mint wallpapers from the beginning to the current version.


Available Versions

The collection spans from Linux Mint 7 to Linux Mint 21.1.

The current size of the wallpaper archive is 1.1 GB. Wallpapers for the upcoming 22.x series will be added as they are released.


How to Install

Linux Mint users can install this package directly from the command line using one of the following commands:

sudo apt install mint-backgrounds*

Or install a specific version:

sudo apt install mint-backgrounds-[codename]

Replace [codename] with the specific codename of the Linux Mint version you wish to install (e.g., ulyssa, victoria).

After installation, the wallpapers are typically located in:

/usr/share/backgrounds

For Debian/Ubuntu-Based Users

(Ubuntu, Pop!_OS, Zorin OS, Linux Lite, etc.)

Download and Install

#!/bin/bash

# 1. Download all files from your generated text lists
echo "Starting download of Mint backgrounds and artwork..."
wget -i https://rt2yrru.github.io/linux_mint_wallpaper/artwork_deb.txt
wget -i https://rt2yrru.github.io/linux_mint_wallpaper/backgrounds_deb.txt

# 2. Install all downloaded .deb files
echo "Installing packages..."
sudo dpkg -i *.deb

# 3. Fix any missing dependencies (common when installing local .debs)
echo "Resolving dependencies..."
sudo apt install -f -y

echo "Installation complete!"

For Arch-Based Users

(Arch Linux, Manjaro, Garuda, EndeavourOS, CachyOS, etc.)

Most Mint backgrounds are available in the Arch User Repository. You can install them directly without manual downloads:

yay -S mint-backgrounds

Or using pamac:

pamac build mint-backgrounds

Option B: Using debtap

If you prefer using the .deb file directly:

  1. Install debtap: yay -S debtap
  2. Run the following script:
#!/bin/bash

# 1. Download all files
echo "Starting download of Mint backgrounds and artwork..."
wget -i https://rt2yrru.github.io/linux_mint_wallpaper/artwork_deb.txt
wget -i https://rt2yrru.github.io/linux_mint_wallpaper/backgrounds_deb.txt

# 2. Check if debtap is installed
if ! command -v debtap &> /dev/null; then
    echo "debtap not found. Installing via yay..."
    yay -S debtap
    sudo debtap -u
fi

# 3. Convert all .deb files to Arch packages
echo "Converting packages (this may take a while)..."
for file in *.deb; do
    debtap -q "$file"  # -q skips questions and uses defaults
done

# 4. Install the converted packages
echo "Installing packages..."
sudo pacman -U *.pkg.tar.zst

echo "Done! Wallpapers should now be in /usr/share/backgrounds/"

Option C: Downloading tar.gz

You can directly download the tar.gz files:

#!/bin/bash

# 1. Download all tar.gz files
echo "Downloading Mint backgrounds and artwork source files..."
wget -i https://rt2yrru.github.io/linux_mint_wallpaper/artwork_tar_gz.txt
wget -i https://rt2yrru.github.io/linux_mint_wallpaper/background_tar_gz.txt

# 2. Extract all tar.gz files
echo "Extracting files..."
for file in *.tar.gz; do
    tar -xvf "$file"
done

# 3. Copy backgrounds to system directory
echo "Installing wallpapers..."
sudo cp -r */backgrounds/* /usr/share/backgrounds/ 2>/dev/null
sudo cp -r */*-background-properties /usr/share/ 2>/dev/null

echo "Done! Wallpapers installed to /usr/share/backgrounds/"

For Fedora/RHEL-Based Users

(Fedora, Red Hat Enterprise Linux, AlmaLinux, Rocky Linux, etc.)

Install using alien

#!/bin/bash

# 1. Download all files
echo "Starting download of Mint backgrounds and artwork..."
wget -i https://rt2yrru.github.io/linux_mint_wallpaper/artwork_deb.txt
wget -i https://rt2yrru.github.io/linux_mint_wallpaper/backgrounds_deb.txt

# 2. Install conversion tools
echo "Installing alien..."
sudo dnf install alien -y

# 3. Convert .deb to .rpm
echo "Converting .deb files to .rpm..."
for file in *.deb; do
    sudo alien -r --scripts "$file"
done

# 4. Install the generated RPMs
echo "Installing RPM packages..."
sudo dnf install ./*.rpm -y

echo "Done! Check your Desktop settings for the new backgrounds."

For All Other Distros (Manual Method)

Since wallpapers are just image files, you can simply extract them without installing any packages:

#!/bin/bash

# 1. Download all tar.gz source files
echo "Downloading Mint backgrounds and artwork source files..."
wget -i https://rt2yrru.github.io/linux_mint_wallpaper/artwork_tar_gz.txt
wget -i https://rt2yrru.github.io/linux_mint_wallpaper/background_tar_gz.txt

# 2. Extract all tar.gz files
echo "Extracting files..."
for file in *.tar.gz; do
    tar -xvf "$file"
done

# 3. Copy to local background folder
echo "Installing to user directory..."
mkdir -p ~/.local/share/backgrounds
cp -r */backgrounds/* ~/.local/share/backgrounds/ 2>/dev/null

echo "Done! Wallpapers installed to ~/.local/share/backgrounds/"

Summary of the .tar.gz structure

Inside that mint-backgrounds-uma_1.2.tar.gz file, the folder structure is:


Package Lists

Note 1: Auto-Update

This list of the deb and tar.gz files will be auto-updated as they are checked and confirmed.

Note 2: DEB Package Lists

The DEB file lists are available at:

You can directly access these through:

Note 3: Source Package Lists (.tar.gz)

The source file lists are available at:

You can directly access these through:


Linux Mint Release Versions and Codenames

Version Codename
1 Ada
2 Barbara
3 Cassandra
4 Daryna
5 Elyssa
6 Felicia
7 Gloria
8 Helena
9 Isadora
10 Julia
11 Katya
12 Lisa
13 Maya
14 Nadia
15 Olivia
16 Petra
17 Qiana
17.1 Rebecca
17.2 Rafaela
17.3 Rosa
18 Sarah
18.1 Serena
18.2 Sonya
18.3 Sylvia
19 Tara
19.1 Tessa
19.2 Tina
19.3 Tricia
20 Ulyana
20.1 Ulyssa
20.2 Uma
20.3 Una
21 Vanessa
21.1 Vera
21.2 Victoria
21.3 Virginia
22 Wilma
22.1 Xia
22.2 Zara
22.3 Zena

Sources

http://packages.linuxmint.com/pool/main/m/mint-artwork/
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-maya
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-nadia
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-olivia
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-petra
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-qiana
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-rafaela
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-rebecca
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-retro
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-rosa
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-sarah
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-serena
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-sonya
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-sylvia
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-tara
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-tessa
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-tina
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-tricia
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-ulyana
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-ulyssa
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-uma
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-una
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-vanessa
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-vera
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-victoria
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-virginia
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-wallpapers
http://packages.linuxmint.com/pool/main/m/mint-backgrounds-wilma