al-skel/home/.xprofile

23 lines
445 B
Plaintext
Raw Normal View History

2017-10-23 18:35:35 -05:00
# .xprofile
# vim:ft=sh
# lightdm sources this file at boot
# as well as our own xinitrc with startx
2017-10-23 18:35:35 -05:00
export XDG_CONFIG_HOME=$HOME/.config
if [ -d "/sbin" ]; then
PATH="/sbin:$PATH"
fi
if [ -d "/usr/sbin" ]; then
PATH="/usr/sbin:$PATH"
fi
if [ -d "$HOME/bin" ]; then
PATH=$HOME/bin:$PATH
fi
if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
eval "$(dbus-launch --sh-syntax --exit-with-session)"
fi