diff options
Diffstat (limited to '.profile')
-rw-r--r-- | .profile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,7 +9,7 @@ umask 022 ## Paths ############################################################# # Unix -bins=`echo $HOME/bin $HOME/.prefix/bin $HOME/.gem/ruby/*/bin` +bins=`echo $HOME/bin $HOME/.local/bin $HOME/.prefix/bin $HOME/.gem/ruby/*/bin` for dir in $bins; do if [ -d "$dir" ]; then export PATH="$dir:$PATH" @@ -53,7 +53,7 @@ export _JAVA_OPTIONS # ALSA if [ -x "`which alsactl 2>/dev/null`" ]; then - alsactl --file $HOME/.alsa.save restore &> /dev/null || true + alsactl restore "$HOME/.current.asound" &> /dev/null || true fi # X11 |