Switching Between Wayland and X11 on a Raspberry Pi

In this tutorial, we will show you the simple way to switch between using Wayland or X11 on the Raspberry Pi.

Raspberry Pi Switch Between Wayland and X11

Since introducing Raspberry Pi OS Bookworm, the official Pi operating system has made the giant leap from X11 to Wayland.

Wayland is one of the largest and most breaking changes the OS has seen because it works fundamentally differently from X11. Primarily, this change will break any software that is not built to handle Wayland. While not a problem for actively maintained software, many older pieces will refuse to work.

Luckily, Raspberry Pi OS makes changing between X11 and Wayland as simple as running a single script and hitting enter through a couple of options.

Wayland, however, isn’t without its benefits, and its introduction to Raspberry Pi OS has brought a few improvements. One of these improvements is the introduction of the super helpful Raspberry Pi Connect platform. This software allows you to easily remotely manage your Pi’s.

With the latest versions of Raspberry Pi OS now using labwc, there isn’t even any performance difference between running Wayland and using X11. So, if you tried Wayland before the move to labwc, it is well worth trying it again, especially if you aren’t using

Equipment

Below is a list of equipment we used when writing this guide on switching between Wayland and X11 on our Raspberry Pi.

Optional

This tutorial was tested on a Raspberry Pi 5 running the latest version of Raspberry Pi OS Bookworm.

How to Switch Between Wayland and X11 on your Raspberry Pi

Over the following sections, we will walk you through the quick steps of switching between Wayland and X11 on your Raspberry Pi.

While these steps are for changing to X11, swapping to Wayland is done through the exact same menu, you just need to select the “labwc” option instead.

Launching the Raspberry Pi Configuration Tool

1. The first thing you want to do on your Raspberry Pi is open the terminal.

You can quickly bring up the terminal by pressing CTRL + ALT + T on your keyboard.

2. Before we use the raspi-config tool to switch between Wayland and X11 on our Raspberry Pi, we must ensure everything is up to date. Raspi-config itself often receives updates that help improve its functionality.

You can update the package list and upgrade any out-of-date packages by running the following two commands within the terminal.

sudo apt update
sudo apt upgrade -y

3. After updating all the software on your Raspberry Pi, you can now launch the Rasp-config command line tool using the following command in the terminal.

sudo raspi-config

Using Raspi-config to Switch Between Wayland and X11 on the Raspberry Pi

4. With the Raspi-config tool now open on your Raspberry Pi, the first thing you will want to do is navigate to the “Advanced Options” page.

You can navigate through this tool by using the ARROW keys. To select a highlighted option, press the ENTER key.

Open advanced option page

5. Within this menu, you will find an option labeled “Wayland“. Once you have the option selected, press the ENTER key.

This will take us to the menu that will allow us to switch between the X11 and Wayland backends on our Raspberry Pi.

Change to Wayland menu in Raspberry Pi Configuration tool

6. On this page you will see a few options. Two of these will enable Wayland, the other one will enable the X11 backend on your Raspberry Pi.

If you want to switch from Wayland to X11 on your Raspberry Pi, select the option named “X11” (1.), and press ENTER.

Alternatively, to swap from “X11” to Wayland, you will want to select the “Labwc” option (2.). Ignore the one labeled “wayfire“, as that is no longer supported by the Raspberry Pi OS dev team.

Swap to X11 or Wayland on your Raspberry Pi

7. After switching to either X11 or Wayland on your Raspberry Pi, you will get a message indicating it is now “active“. However, it won’t be active until you restart your Raspberry Pi.

Press ENTER to continue back to the main menu of the Raspi-config tool.

X11 Enabled on your Raspberry Pi

8. Back on this main menu, select the “<FINISH>” option to exit the tool. You can also press the ESC key to exit.

Finish with raspi-config

9. You will now be asked if you want to restart. For the switch from Wayland to X11 to complete on your Raspberry Pi, you will need to select the “<Yes>” option and press ENTER.

Restart Raspberry Pi

Checking if your Raspberry Pi is Using X11 or Wayland

10. Once your Raspberry PI finishes rebooting, you will probably want to check whether you are now running Wayland or X11. Since most changes aren’t super obvious to the end user, you might not notice any differences at first

Open up the terminal and then print out the session type using the following command. With Raspberry Pi OS, the “XDG_SESSION_TYPE” variable is populated with the session type when the desktop loads.

Please note that this variable will not give you an accurate value if you are using SSH for this command. You will just see “tty“.

echo $XDG_SESSION_TYPE

11. If Raspberry Pi OS is now using X11, you should see the following text output by this command.

x11

Alternatively, if you switch back to Wayland on your Raspberry Pi, you will see the following output instead.

wayland

Troubleshooting Changing to Wayland with Labwc on the Raspberry Pi

If you are making the switch from X11 to Wayland with Labwc there is a slight chance that you run into a black screen. This is caused by the “raspi-config” tool changing you to use LabWC without the package actually being installed on your system.

Luckily solving this issue is pretty simple, especially if you at least have SSH access to your Pi.

1. Your first step is to update the package list cache on your Raspberry Pi by running the following command.

sudo apt update

2. Once the cache has been updated, you can install the labwc compositor on to your Rapberry Pi by running the following command.

This install process should only take a couple of minutes to complete.

sudo apt install labwc

3. Finally, with the package installed, restart your Pi by using the command below within the terminal.

Once your device restarts, you should no longer have the blank screen issue.

sudo reboot

Conclusion

By this point in the guide, you will have learned how to switch between X11 and Wayland on your Raspberry Pi easily.

While Wayland continues to be improved and software support continues to grow, there are still some situations where you will have to rely on X11.

At least, for now, switching between these two is a straightforward process, but hopefully, as soon as Wayland is adopted more and more, there should no longer be any need to change to X11.

Please feel free to drop a comment below if you are having any issues with switching between these two desktop modes.

If you found this guide to be helpful, we highly recommend that you take some time to explore some of our other Raspberry Pi guides or projects.

Leave a Reply

Your email address will not be published. Required fields are marked *