mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-25 05:05:13 +02:00
8 lines
182 B
Bash
8 lines
182 B
Bash
#!/usr/bin/env sh
|
|
|
|
if [ "$XDG_CURRENT_DESKTOP" != "KDE" ]; then
|
|
export QT_QPA_PLATFORMTHEME=qt5ct
|
|
fi
|
|
if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
|
|
export QT_QPA_PLATFORM=wayland
|
|
fi
|