mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
46 lines
935 B
Markdown
46 lines
935 B
Markdown
# Adwaita theme - in GTK and QT
|
|
|
|
* [https://wiki.archlinux.org/index.php/Uniform_look_for_Qt_and_GTK_applications#Adwaita]()
|
|
|
|
**NOTE**: This has just been tested with XFCE4 so far!
|
|
|
|
## GTK
|
|
|
|
If using XFCE4 or Gnome this is the default theme. No action required.
|
|
|
|
## qt5
|
|
|
|
```shell
|
|
aur sync -c adwaita-qt
|
|
```
|
|
|
|
Enable via env variable.
|
|
|
|
```shell
|
|
echo 'export QT_STYLE_OVERRIDE=adwaita' | sudo tee -a /etc/profile.d/99_qt5_theme.sh
|
|
```
|
|
|
|
## qt4
|
|
|
|
```shell
|
|
aur sync -c adwaita-qt4
|
|
```
|
|
|
|
Then edit `/etc/xdg/Trolltech.conf` :
|
|
|
|
```
|
|
# ...
|
|
[Qt]
|
|
style=adwaita
|
|
# ...
|
|
```
|
|
|
|
## A quote that gave me this idea
|
|
|
|
> If you are using a GTK-based environment you need to configure
|
|
> Qt applications look and feel (using
|
|
> [adwaita-qt](https://github.com/FedoraQt/adwaita-qt) `qt5ct`
|
|
> `qt5-styleplugins`. You can read
|
|
> [this wiki page](https://wiki.archlinux.org/index.php/Uniform_look_for_Qt_and_GTK_applications#Styles_for_both_Qt_and_GTK)
|
|
> about it.
|
|
> |