1
Fork 0
theorangeone.net-legacy/content/posts/make-qt-less-ugly/index.md

27 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

---
title: Make QT look less ugly
date: 2017-12-27
image: resource:qt-gtk-after.png
2017-12-27 23:24:37 +00:00
hide_header_image: true
tags: [linux]
---
As anyone who's used an application written with the QT UI framework will know, they don't always look the best, and certainly don't fit in with the rest of your desktops theme in the way GTK does. Certain themes support styling both GTK and QT applications, however most don't.
![KeePassXC, before it looked pretty](qt-gtk-before.png)
Fortunately, there's a solution, and it comes in the form of a _Theme engine_. Theme engines act as a small compatibility layer, allowing certain frameworks to render as if they were others. With this, we can tell QT applications to render as if they were GTK.
2020-05-31 11:24:41 +01:00
`qt5-styleplugins` is a package which allows QT applications it's components using the same underlying widget components as GTK+2. More detail on `qt5-styleplugins` can be found on the [Arch Wiki](https://wiki.archlinux.org/index.php/Uniform_look_for_Qt_and_GTK_applications#QGtkStyle).
Setting up `qt5-styleplugins` is incredibly simple:
2020-05-31 11:24:41 +01:00
1. Install the package from your OS's package manager. [`qt5-styleplugins`](https://www.archlinux.org/packages/?name=qt5-styleplugins) on Arch, [`qt5-style-plugins`](https://packages.ubuntu.com/search?keywords=qt5-style-plugins) on Ubuntu.
2. Set the environment variable: `QT_QPA_PLATFORMTHEME=gtk2`
Installing the environment variable can't be done in your `.bashrc`, as variables stored here aren't accessible to applications launched outside the terminal. I'd recommend setting it in `/etc/environment` instead.
After install, simply reboot, and your apps should fit in far, _far_ better with the rest of your desktop.
![KeePassXC, with GTK looks much nicer!](qt-gtk-after.png)