summaryrefslogtreecommitdiffstats
path: root/kde/post-install/kde-baseapps
diff options
context:
space:
mode:
Diffstat (limited to 'kde/post-install/kde-baseapps')
-rw-r--r--kde/post-install/kde-baseapps/profile.d/kde.csh9
-rw-r--r--kde/post-install/kde-baseapps/profile.d/kde.sh10
2 files changed, 16 insertions, 3 deletions
diff --git a/kde/post-install/kde-baseapps/profile.d/kde.csh b/kde/post-install/kde-baseapps/profile.d/kde.csh
index a09579b..bb0ea69 100644
--- a/kde/post-install/kde-baseapps/profile.d/kde.csh
+++ b/kde/post-install/kde-baseapps/profile.d/kde.csh
@@ -3,10 +3,17 @@
if ( ! $?KDEDIRS ) then
setenv KDEDIRS /usr
endif
-setenv PATH ${PATH}:/usr/lib/kde4/libexec
+setenv PATH ${PATH}:/usr/lib/kf5:/usr/lib/kde4/libexec
if ( $?XDG_CONFIG_DIRS ) then
setenv XDG_CONFIG_DIRS ${XDG_CONFIG_DIRS}:/etc/kde/xdg
else
setenv XDG_CONFIG_DIRS /etc/xdg:/etc/kde/xdg
endif
+
+if ( ! $?XDG_RUNTIME_DIR ) then
+ setenv XDG_RUNTIME_DIR /tmp/xdg-runtime-$USER
+ mkdir -p $XDG_RUNTIME_DIR
+ chown $USER $XDG_RUNTIME_DIR
+ chmod 700 $XDG_RUNTIME_DIR
+endif
diff --git a/kde/post-install/kde-baseapps/profile.d/kde.sh b/kde/post-install/kde-baseapps/profile.d/kde.sh
index 6f0199e..8883fc8 100644
--- a/kde/post-install/kde-baseapps/profile.d/kde.sh
+++ b/kde/post-install/kde-baseapps/profile.d/kde.sh
@@ -2,12 +2,18 @@
# KDE additions:
KDEDIRS=/usr
export KDEDIRS
-PATH="$PATH:/usr/lib/kde4/libexec"
+PATH="$PATH:/usr/lib/kf5:/usr/lib/kde4/libexec"
export PATH
if [ ! "$XDG_CONFIG_DIRS" = "" ]; then
XDG_CONFIG_DIRS=$XDG_CONFIG_DIRS:/etc/kde/xdg
else
XDG_CONFIG_DIRS=/etc/xdg:/etc/kde/xdg
fi
-export XDG_CONFIG_DIRS
+if [ "$XDG_RUNTIME_DIR" = "" ]; then
+ XDG_RUNTIME_DIR=/tmp/xdg-runtime-$USER
+ mkdir -p $XDG_RUNTIME_DIR
+ chown $USER $XDG_RUNTIME_DIR
+ chmod 700 $XDG_RUNTIME_DIR
+fi
+export XDG_CONFIG_DIRS XDG_RUNTIME_DIR