How to Change The Desktop Appearance on Raspberry Pi?
Raspberry Pi OS is built for beginners, so developers try to keep things clean and simple. But by default, you don’t get the most exciting interface. If you want to improve the desktop appearance on your Raspberry Pi, you are at the perfect place, I’ll give you several tips to do this.
The default interface on Raspberry Pi OS can be highly improved by installing a new theme, desktop environment or by tweaking some settings like the wallpaper, splash screen or icons.
You’ll see how to do everything in this article, so keep reading if you want to pimp your Raspberry Pi :-).
If you need help getting started on Raspberry Pi, I have an entire course to guide you through your first steps. I’ll help you use the perfect hardware, plug everything in and install your first system. You’ll also do your first project with me, just to make sure you are ready for the next level. Get all the information on this page if you are interested.
Adjust the Display Settings
There is no point in changing the desktop appearance to make it look better if you use the wrong resolution, so let’s fix the display settings first, if needed (for most users it should already be OK by default).
Fix the screen resolution
Depending on the screen and Raspberry Pi model you use, you may have some issues with the default resolution (if the elements are disproportionate or outside the screen, for example).
Here is how to fix it:
- Open the main menu.
- Go to Preferences > Screen Resolution.
- Right click on the screen that needs an update, and test another resolution.
It looks like this:

Refer to the specifications of your screen to know what to choose in this list (or just try some, it will revert automatically if it doesn’t work).
If you need more guidance for this step, you can check this other article on the website: How To Change The Screen Resolution On Raspberry Pi
If you are lost in all these new words and abbreviations, request my free Raspberry Pi glossary here (PDF format)!
Download now
Change the “underscan” option
On Raspberry Pi, there is an option named “underscan” or “overscan”. Basically, the idea is to adjust the image to fit your monitor. By default, the underscan is disabled (so overscan is enabled).
Typically, you need to disable underscan if you have black borders around the edges of your screen.
I think since Buster there are fewer issues with this option, but just in case, you can change it easily on the Desktop edition:
- Open the main menu.
- Go to Preferences > Raspberry Pi Configuration.
- Open the Display tab.
- Enable or disable the underscan:
By the way, they are other options that you can try, like pixel doubling which will make everything bigger, or screen blanking which is a kind of sleep mode for the Raspberry Pi monitor (more details here).
After restarting the Raspberry Pi, see if it’s better than before, or adjust these options again if necessary.
Note 1 : you can edit the /boot/config.txt file to adjust the overscan setting, or disabling it. Might be useful on a Lite version or to streamline the installation process for multiple Raspberry Pi.
Note 2 : Raspberry Pi imager also have a hidden feature to configure this when flashing your SD card. Press CTRL+Shift+X to open the advanced options and set the default value:
Are you a bit lost in the Linux command line? Check this article first for the most important commands to remember and a free downloadable cheat sheet so you can have the commands at your fingertips.
Change the desktop wallpaper
Just $75 can create educational opportunities for a child in need.
From the Desktop interface
To change the background of the Raspberry Pi, you can either use one of the images provided or download a new one on the Internet. If you download one, save it somewhere on your Raspberry Pi to find it later (In /home/pi/Pictures for example).
To change the wallpaper, right-click on the desktop, then Desktop Preferences. A window like this will show up:

And now you have to change the image in the Picture field.
By default, it will display the system folder where the Raspberry Pi stores all the default wallpapers.
If you have downloaded an image elsewhere, browse to the file location and open it.
With command line:
I don’t really see the point of doing this with the command line, but know that it is possible.
First, download your wallpaper image with wget: wget https://raspberrytips.com/wallpaper.jpg
Then change the wallpaper with this command: pcmanfm --set-wallpaper /home/pi/Images/wallpaper.jpg
Change the default theme on Raspberry Pi OS
I have a video about it where I show you all the steps to do this, you can watch it, and then read the following to get more details.
If you are lost in all these new words and abbreviations, request my free Raspberry Pi glossary here (PDF format)!
Download now
Use Another Desktop Environment
First of all, you need to know that there are several graphical environments on Linux, and so on Raspberry Pi
A graphical environment is a package of display options, which allows you to manage most of the graphical aspects of your desktop differently
Here are some examples of graphical environments that you might know:
– Gnome
– LXDE
– Mate
– KDE
– …
Each of them has some specificities: KDE looks a bit like Windows, with the start menu at the bottom left. Gnome is the default one on Ubuntu. Raspberry Pi uses a custom desktop environment (PiXeL) based on LXDE.
Install a new desktop environment
Anyway, if you want to try installing a new desktop environment on your Raspberry Pi, you are at the right place.
Trying different environments will allow you to choose the one that suits you the best, and then you can look for themes associated with this environment.
Let’s take an example and see how to install MATE on Raspberry Pi OS.
It will be pretty much the same thing for other environments:
- Update apt:
sudo apt update
- Install mate:
sudo apt install mate-desktop-environment
- Add mate as default environment for your user by typing this command line:
sudo update-alternatives --config x-session-manager
In the wizard, type the number corresponding to the desktop environment you want to use. - Reboot:
sudo reboot
After that, MATE (or the desktop environment you installed) should open:

Find a new theme
Now that you have found the desktop environment of your dreams, you can move on to installing a theme.
Each desktop environment has different themes available. There is not a great tool to help you with this, so the only way is to use apt or the package manager.
For example, I have done this search: sudo apt search mate | grep "\-theme"
And got these results:

There are also many sites that will give you a link to download more themes via .deb files or PPA repository.
Feel free to do your search online to find the ideal design, and most of the time it will allow you to see a preview.
Install it
If you find something you like in apt, you can install the theme with the usual command. For example:
sudo apt install arc-theme
If you have downloaded a theme online, follow the instructions on the download page.
To enable a theme with Mate, go to System > Control Center (you should have something similar in other environments). Then choose Change Theme in the left menu, and select the theme.

So we are veiling on a new desktop environment, with a custom theme, and our favorite wallpaper, we start to feel good no?
Change splash screen
Here is the last challenge for those who want to go after this “Pimp my Raspberry Pi” thing.
What is a splash screen?
The splash screen is the big picture that appears when you start your Raspberry Pi, just before starting the desktop interface:

Combine your passions and get paid. Write for RaspberryTips!
Change splash screen
The splash screen is now managed by Plymouth on Raspberry Pi OS and this makes everything easier.
Before it was complicated to edit this picture, now you just have to do this: sudo cp /home/pi/Images/splash.png /usr/share/plymouth/themes/pix/splash.png sudo reboot
/home/pi/Images/splash.png must, of course, be replaced by the name and location of your original image.
The default size of the picture is 1024×768. Find a picture with this resolution (or close to it) and in PNG format, and you can use it as your custom splash screen.
It's a free PDF guide containing every Raspberry Pi Linux command you should know!
Download now
Want to chat with other Raspberry Pi enthusiasts? Join the community, share your current projects and ask for help directly in the forums.
Conclusion
And that’s it. I think you’ve learned enough for today.
You now know how to:
– Set the best resolution for your screen.
– Change the desktop wallpaper.
– Install a new graphical environment.
– Get a new theme.
– Change the splash screen display when starting the Raspberry Pi.
Yes!
Another thing you can do is to install a screensaver on Raspberry Pi OS, you can find more details on how to do this by clicking on this link.
More on the same topic:
- Can You Use macOS On Raspberry Pi? (The Solution)
- Best Desktop Environment on Raspberry Pi (Tests & pictures)
- Best Themes for Retropie – Top 15
It's a free PDF guide containing every Raspberry Pi Linux command you should know!
Download now
Additional Resources
Not sure where to start?
Understand everything about the Raspberry Pi, stop searching for help all the time, and finally enjoy completing your projects.
Watch the Raspberry Pi Bootcamp course now.
Master your Raspberry Pi in 30 days
Don’t want the basic stuff only? If you are looking for the best tips to become an expert on Raspberry Pi, this book is for you. Learn useful Linux skills and practice multiple projects with step-by-step guides.
Download the e-book.
VIP Community
If you just want to hang out with me and other Raspberry Pi fans, you can also join the community. I share exclusive tutorials and behind-the-scenes content there. Premium members can also visit the website without ads.
More details here.
Need help building something with Python?
Create, understand, and improve any Python script for your Raspberry Pi.
Learn the essentials step-by-step without losing time understanding useless concepts.
Get the e-book now.
You can also find all my recommendations for tools and hardware on this page.
Ho do you change the raspberry icon on the login screen – the greeter?
Your desktop change does not work with Raspbian Buster.
Hi Ken,
Which part?
I have used Mate recently without any issue
If you have an error or something, I could help you
Not sure where that comment came from. Your directions worked perfectly. I now have the Mate desktop on my Raspberry Pi 4.
Thanks so much for the great article.
Thanks for your comment Ken 🙂
*Amazing * splash screen actually shows up but only for less than 1 second,
how can we show the Splash Screen for at least 3-5 sec long? what should be the image size for full screen?
& can we change the boot up screen also & add our own image or .GIF file?
Hi Prisa,
You can try this tool: https://kb.gosi.at/content/43/141/en/how-to-add-a-custom-splashscreen-to-raspberry-pi-_-raspbian.html
I think that “fbi” has an option for the duration (maybe -t or -T)
The Reposetory does not exist :c
oh you can now use sudo apt-get install mate-desktop-environment-core
Any chance of instructions for the Mate desktop for ‘Raspbian for PC’ ?
Hi Gerry,
Sorry, I never tried, but I would say that it should be the same instructions
Even on Debian you can do the same thing