XP-PEN Deco 01v2 Setup Guide for Linux Nobara
2026 UPDATE
Xp Pen Deco 01 v2 official drivers here, this is what I daily now but maybe your special case will be covered by the tutorial.
This guide covers the installation of OpenTabletDriver (OTD) and the specific fixes for the Deco 01v2’s scaling and button issues on Wayland.
1. Install .NET Dependencies
Nobara is Fedora-based, so use dnf to install the required .NET runtime:
1
sudo dnf install dotnet-runtime-8.0
2. Download and Extract OpenTabletDriver
- Go to: https://github.com/OpenTabletDriver/OpenTabletDriver/releases
- Download the ‘OpenTabletDriver.Linux.x64.tar.gz’ file.
- Extract the folder to your Home directory: ~/OpenTabletDriver
1
tar -xzf ~/Downloads/opentabletdriver-*.tar.gz -C ~/
3. Set Hardware Permissions (Udev Rules)
Run these commands to allow the driver to talk to your tablet hardware:
1
2
3
cd ~/opentabletdriver
sudo cp ~/opentabletdriver/etc/udev/rules.d/70-opentabletdriver.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules && sudo udevadm trigger
4. Running the Driver
You must run the Daemon first (the engine), then the UX (the settings interface).
To start the Daemon:
1
~/opentabletdriver/usr/local/lib/opentabletdriver/OpenTabletDriver.Daemon
To start the Settings GUI (run this in a separate terminal window):
1
~/opentabletdriver/usr/local/lib/opentabletdriver/OpenTabletDriver.UX.Gtk
5. Specific Fixes for XP-PEN Deco 01v2
A. Fixing the “Double Size” Scaling Issue: The Deco 01v2 often reports dimensions twice as large as the physical surface.
- In the OTD GUI, go to the ‘Display / Area’ tab.
- Manually divide the ‘Width’ and ‘Height’ values by 2.
- Click ‘Apply’ and ‘Save’.
The Deco 01v2 has a physical active area of 10 x 6.25 inches.
Width: 10 inches x 25.4 = 254 mm Height: 6.25 inches x 25.4 = 158.75 mm
B. Fixing the Side Buttons:
- Go to the Buttons tab in the OTD GUI.
- Tap your pen buttons. If the boxes highlight in the software, they are working!
- If they do not work, you may need the “Artist Mode” plugin instead (search for “Artist” in the Plugin Manager).
6. Enable Autostart on Boot
- Open System Settings and go to Autostart.
- Click + Add… and select Add Application.
- Use the file tree to navigate to:
Home>opentabletdriver>usr>local>lib>opentabletdriver - Select the file named
OpenTabletDriver.Daemonand click Open. - Click OK to finish adding it to your login items.
7. Wayland Support
If you are using Nobara’s default Wayland session, ensure the ‘Output Mode’ in the OTD settings is set to ‘Libevdev’ or ‘Wayland’ to ensure proper pen mapping and pressure sensitivity.
8. Add a Desktop Shortcut
To launch the settings GUI from your app menu without using the terminal:
- Create a new desktop file:
1
nano ~/.local/share/applications/opentabletdriver.desktop
- Paste the following content into the file (Replace YOUR_USERNAME with your actual username):
1
2
3
4
5
6
7
8
9
[Desktop Entry]
Type=Application
Name=OpenTabletDriver
Comment=Graphic Tablet Configuration
Exec=/home/YOUR_USERNAME/opentabletdriver/usr/local/lib/opentabletdriver/OpenTabletDriver.UX.Gtk
Path=/home/YOUR_USERNAME/opentabletdriver/usr/local/lib/opentabletdriver/
Icon=input-tablet
Terminal=false
Categories=Graphics;Settings;
- Press CTRL + O, then Enter to save, and CTRL + X to exit. The “OpenTabletDriver” icon will now appear in your application launcher.