This commit is contained in:
natemaia
2018-05-08 00:34:04 -07:00
parent 2d8afde54c
commit 2a85e57d47
12 changed files with 39 additions and 999 deletions

View File

@ -1,22 +1,10 @@
# .xprofile
# vim:ft=sh
# lightdm sources this file at boot
# as well as our own xinitrc with startx
export XDG_CONFIG_HOME=$HOME/.config
# sourced at boot by xinit
if [ -d "/sbin" ]; then
PATH="/sbin:$PATH"
fi
[ -d "/sbin" ] && PATH="$PATH:/sbin"
[ -d "/usr/sbin" ] && PATH="$PATH:/usr/sbin"
[ -d "$HOME/bin" ] && PATH="$HOME/bin:$PATH"
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
export XDG_CONFIG_HOME="$HOME/.config"