diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-07-03 11:05:00 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-07-03 11:05:00 -0300 |
commit | b90a2ad93279e89b7b74e37305b5c8af88cf44ed (patch) | |
tree | 6cd3004ee908c31a312174af338d7202e8a53c0a | |
parent | e896b6cb29fbb7377fefc8cd4fc6b0d72bfd6ccc (diff) | |
download | utils-x11-b90a2ad93279e89b7b74e37305b5c8af88cf44ed.tar.gz utils-x11-b90a2ad93279e89b7b74e37305b5c8af88cf44ed.tar.bz2 |
Fix: xnm-tray: use QT_QPA_PLATFORMTHEME instead of XDG_CURRENT_DESKTOP
-rwxr-xr-x | xnm-tray | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -9,7 +9,10 @@ if laptop-detect; then sleep 5 # Then start nm-tray with a fix - # See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=983536 - XDG_CURRENT_DESKTOP=GNOME nm-tray + # + # Check https://wiki.archlinux.org/title/Uniform_look_for_Qt_and_GTK_applications + # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=983536 + #XDG_CURRENT_DESKTOP="GNOME" nm-tray + QT_QPA_PLATFORMTHEME="gnome" nm-tray fi fi |