mirror of
git://slackware.nl/current.git
synced 2025-01-09 05:24:36 +01:00
14 lines
261 B
Bash
14 lines
261 B
Bash
|
#!/bin/sh
|
||
|
# KDE additions:
|
||
|
KDEDIRS=/usr
|
||
|
export KDEDIRS
|
||
|
PATH="$PATH:/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
|
||
|
|