mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 07:37:14 +08:00
14 lines
413 B
Plaintext
14 lines
413 B
Plaintext
|
#!/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/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
|
||
|
|