I just managed to install Davinci Resolve on my Linux box, but the UI fonts are so small that I can’t see almost anything. I tried using Gnome Display Scaling, made it 400%, but it didn’t help at all.
Any idea 🤔?
Thanks!
You must log in or register to comment.
You have to set these environment variables:
QT_DEVICE_PIXEL_RATIO=2
QT_AUTO_SCREEN_SCALE_FACTOR=true
GUI instructions
- Install Alacarte and find the desktop entry for Resolve
- Change the command to
env QT_DEVICE_PIXEL_RATIO=2 QT_AUTO_SCREEN_SCALE_FACTOR=true /opt/resolve/bin/resolve
CLI instructions
- Create the local applications directory if it does not exist
mkdir -p ~/.local/share/applications/
- Copy the desktop entry to your home folder:
cp /usr/share/applications/com.blackmagicdesign.resolve.desktop ~/.local/share/applications/
- Open the local entry in a text editor, such as nvim
nvim ~/.local/share/applications/com.blackmagicdesign.resolve.desktop
- Change the
Exec=
line toExec=env QT_DEVICE_PIXEL_RATIO=2 QT_AUTO_SCREEN_SCALE_FACTOR=true /opt/resolve/bin/resolve