6 lines
129 B
Bash
Executable file
6 lines
129 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
if [ -n "$(command -v qt5ct)" ] && [ -z "$DESKTOP_SESSION" ]; then
|
|
export QT_QPA_PLATFORMTHEME=qt5ct
|
|
fi
|
|
|