summaryrefslogtreecommitdiffstats
path: root/source/kde/kde/post-install/kservice/profile.d/kde.csh
diff options
context:
space:
mode:
Diffstat (limited to 'source/kde/kde/post-install/kservice/profile.d/kde.csh')
-rw-r--r--source/kde/kde/post-install/kservice/profile.d/kde.csh24
1 files changed, 24 insertions, 0 deletions
diff --git a/source/kde/kde/post-install/kservice/profile.d/kde.csh b/source/kde/kde/post-install/kservice/profile.d/kde.csh
new file mode 100644
index 000000000..b0ce563f7
--- /dev/null
+++ b/source/kde/kde/post-install/kservice/profile.d/kde.csh
@@ -0,0 +1,24 @@
+#!/bin/csh
+# KDE additions:
+if ( ! $?KDEDIRS ) then
+ setenv KDEDIRS /usr
+endif
+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
+
+# Commented out, since PAM should take care of this:
+#if ( ! $?XDG_RUNTIME_DIR ) then
+# # Using /run/user would be more in line with XDG specs, but in that case
+# # we should mount /run as tmpfs and add this to the Slackware rc scripts:
+# # mkdir /run/user ; chmod 1777 /run/user
+# # setenv XDG_RUNTIME_DIR /run/user/$USER
+# setenv XDG_RUNTIME_DIR /tmp/xdg-runtime-$USER
+# mkdir -p $XDG_RUNTIME_DIR
+# chown $USER $XDG_RUNTIME_DIR
+# chmod 700 $XDG_RUNTIME_DIR
+#endif