al-skel/home/.xprofile

19 lines
359 B
Plaintext
Raw Normal View History

2017-10-23 18:35:35 -05:00
# .xprofile
2017-12-02 01:06:11 -06:00
XDG_CONFIG_HOME=$HOME/.config
2017-10-16 14:38:02 -05:00
export XDG_CONFIG_HOME
2017-12-02 01:06:11 -06:00
export PATH=$HOME/bin:$PATH
# include sbin in PATH
if [ -d "/sbin" ] ; then
PATH="/sbin:$PATH"
fi
if [ -d "/usr/sbin" ] ; then
PATH="/usr/sbin:$PATH"
fi
if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
eval `dbus-launch --sh-syntax --exit-with-session`
fi