Make Debian 8 Look Like Ubuntu MATE
A previous post explained how to make Debian 8 look like classic Ubuntu Gnome 2 desktop. Now here’s how to make Debian 8 Jessie look like Ubuntu MATE Edition. We will install MATE desktop environment, Ubuntu mate themes, fonts and wallpapers on Debian 8.
Step 1: Install MATE Desktop
It’s very easy to do, simply run:
sudo apt update sudo apt upgrade sudo apt install mate-desktop-environment-extras
Then log out and log into MATE desktop.
Step 2: Install Ubuntu MATE Themes on Debian 8
The Ubuntu MATE edition uses ambiant-Mate
as the default theme which is a variant of the original ambiance theme. It’s included in the ubuntu-mate-themes
deb package.
Download ubuntu-mate-themes deb package in your browser, or use wget to download it in the terminal.
wget http://mirrors.kernel.org/ubuntu/pool/universe/u/ubuntu-mate-artwork/ubuntu-mate-themes_16.04.6_all.deb
We also need to download 3 dependency packages humanity-icon-theme, ubuntu-mate-icon-themes and ubuntu-mono icon theme, or use wget to download them in the terminal.
wget http://mirrors.kernel.org/ubuntu/pool/main/h/humanity-icon-theme/humanity-icon-theme_0.6.10_all.deb wget http://mirrors.kernel.org/ubuntu/pool/universe/u/ubuntu-mate-artwork/ubuntu-mate-icon-themes_16.04.6_all.deb wget http://mirrors.kernel.org/ubuntu/pool/main/u/ubuntu-themes/ubuntu-mono_14.04+16.04.20160415-0ubuntu1_all.deb
Then install all 4 packages with the below command.
sudo dpkg -i humanity*.deb ubuntu*.deb
Now go to System
> Preferences
> Appearance
. Under theme
tab, choose ambiant-MATE as the theme.
You can immediately see the effect. The background of terminal also changed.
Ambiant-MATE uses MATE icons and green color. If you want the original Ubuntu mono icon and brown/orange color, then in Appearance Preferences
window, click customize
button. In colors
tab, Change the background color of selected items to #F07746
.
Then in the Icons
tab, Change Icon theme to Ubuntu Mono Dark
.
Step 3: Change Main Menu Icon
The main menu icon used by Ubuntu mono dark
is the Ubuntu logo. We want to use the Debian swirl logo as the icon.
You can download Debian swirl icon from my website with the following command
wget https://www.linuxbabe.com/uploads/debian-swirl.svg
Then copy it to the ubuntu mono icon theme directory and rename it to start-here.svg
.
sudo cp debian-swirl.svg /usr/share/icons/ubuntu-mono-dark/apps/22/start-here.svg
Log out and log back in, you should see the Debian swirl icon at the top left corner.
Step 4: Install Ubuntu Wallpaper
Download Ubuntu wallpaper from Ubuntu website. Or use wget to download it in terminal.
wget http://mirrors.kernel.org/ubuntu/pool/main/u/ubuntu-wallpapers/ubuntu-wallpapers_16.04.1-0ubuntu1_all.deb wget http://mirrors.kernel.org/ubuntu/pool/main/u/ubuntu-wallpapers/ubuntu-wallpapers-xenial_16.04.1-0ubuntu1_all.deb
Then install it with dpkg.
sudo dpkg -i ubuntu-wallpapers*.deb
Then go to System
> Preferences
> Appearance
. In background
tab, click Add
button.
And go to /usr/share/backgrounds
directory to add Ubuntu wallpaper.
You can also download and install Ubuntu mate wallpaper.
Step 5: Install Ubuntu Font
Download ubuntu-font-family
deb package from Ubuntu website. Or use wget to download it in terminal.
wget http://mirrors.kernel.org/ubuntu/pool/main/u/ubuntu-font-family-sources/ttf-ubuntu-font-family_0.80-0ubuntu6_all.deb
Then install it with dpkg.
sudo dpkg -i ttf-ubuntu-font-family*.deb
Then go to System
> Preferences
> Appearance
. In the Fonts
tab, make changes as shown in the screenshot below.
To improve font rendering on Debian 8, we need to install the infinality tool. You have 3 options: install infinality from Ubuntu PPA (might break your Debian), build it from source or use prebuilt package for Debian Jessie.
Click here to see how to configure infinality after it’s installed.
Step 6: Change Terminal Background Color and Text Color
In terminal profile preferences, under colors
tab, set #300A24
as the background color and #D3D7CF
as the text color.
Step 7: Disable Animation When Maximizing and Unmaximizing Window
Open dconf editor (sudo apt install dconf-editor).
Go to org > mate > desktop > interface. Uncheck enable animations
.
And Here’s the Final Product
Right click the image and open it in new tab to see the full image.
If you found this post useful, subscribe to our free newsletter or follow us on Google+, Twitter or like our Facebook page.
Would love to see a series of these for latest Debian with all Ubuntu flavors, like stock (Gnome)/Kubuntu/Budgie/Deepin/Kylin/Lubuntu/Xubuntu