aboutsummaryrefslogtreecommitdiff
path: root/misc/kde4-xdg-env/files/xdg-env.sh.in
blob: 394d578ae71fc0d7279e14b9cbbd20cf1683813b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

# $FreeBSD$
#
# Submit missing XDG-file locations to kde@freebsd.org!

XDG_CONFIG_DIRS=\
${XDG_CONFIG_DIRS}:/etc/xdg:%%LOCALBASE%%/etc/xdg:%%X11BASE%%/etc/xdg:\
%%LOCALBASE%%/etc/xdg/xfce4

if [ %%KDE_PREFIX%% != %%LOCALBASE%% ]; then
    XDG_CONFIG_DIRS=${XDG_CONFIG_DIRS}:%%KDE_PREFIX%%/etc/xdg
fi

export XDG_CONFIG_DIRS

XDG_DATA_DIRS=\
${XDG_DATA_DIRS}:/usr/share:%%LOCALBASE%%/share:%%LOCALBASE%%/share/gnome:\
%%X11BASE%%/share:%%X11BASE%%/share/gnome

if [ %%KDE_PREFIX%% != %%LOCALBASE%% ]; then
    XDG_DATA_DIRS=${XDG_DATA_DIRS}:%%KDE_PREFIX%%/share
fi

export XDG_DATA_DIRS

kbuildsycoca