Clean up configs, remove bashrc conflicting with bash
This commit is contained in:
@ -2,3 +2,21 @@
|
||||
|
||||
XDG_CONFIG_HOME="$HOME/.config"
|
||||
export XDG_CONFIG_HOME
|
||||
|
||||
# include sbin in PATH
|
||||
if [ -d "/sbin" ] ; then
|
||||
PATH="/sbin:$PATH"
|
||||
fi
|
||||
|
||||
if [ -d "/usr/sbin" ] ; then
|
||||
PATH="/usr/sbin:$PATH"
|
||||
fi
|
||||
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
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
|
||||
|
Reference in New Issue
Block a user