mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
14 lines
417 B
Bash
14 lines
417 B
Bash
#!/bin/bash
|
|
|
|
if [[ "$DESKTOP_SESSION" == "plasma" ]]; then
|
|
export QTDIR="/usr/lib/qt5"
|
|
export PATH="usr/bin:$QTDIR/bin:$PATH"
|
|
export QT_PLUGIN_PATH="/usr/lib/kf5/plugins:/usr/lib/qt5/plugins"
|
|
export QT_INCLUDE_PATH="/usr/include/qt5"
|
|
export QML2_IMPORT_PATH="/usr/lib/qml:/usr/lib/qt5/qml"
|
|
export QML_IMPORT_PATH="$QML2_IMPORT_PATH"
|
|
export KDE_SESSION_VERSION=5
|
|
export KDE_FULL_SESSION=true
|
|
fi
|
|
|