Update and clean up user scripts

This commit is contained in:
natemaia
2017-12-01 23:06:11 -08:00
parent dcf56fc86a
commit 5be5c23629
17 changed files with 62 additions and 122 deletions

View File

@ -1,7 +1,8 @@
# .xprofile
XDG_CONFIG_HOME="$HOME/.config"
XDG_CONFIG_HOME=$HOME/.config
export XDG_CONFIG_HOME
export PATH=$HOME/bin:$PATH
# include sbin in PATH
if [ -d "/sbin" ] ; then
@ -12,11 +13,6 @@ 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