mirror of
git://slackware.nl/current.git
synced 2025-02-06 20:46:02 +01:00
8 lines
170 B
Bash
8 lines
170 B
Bash
|
#!/bin/sh
|
||
|
if [ ! "$XDG_CONFIG_DIRS" = "" ]; then
|
||
|
XDG_CONFIG_DIRS=$XDG_CONFIG_DIRS:/etc/xfce/xdg
|
||
|
else
|
||
|
XDG_CONFIG_DIRS=/etc/xdg:/etc/xfce/xdg
|
||
|
fi
|
||
|
export XDG_CONFIG_DIRS
|