From 39bd672b152e7b15f0b34fd06572ca3a14bf877c Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 21 May 2012 12:21:55 -0400 Subject: redo alsa stuff --- .profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.profile') diff --git a/.profile b/.profile index 155d886..b07cfa0 100644 --- a/.profile +++ b/.profile @@ -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 -- cgit v1.2.3-2-g168b From 7036a9b36396ae49cf8ba0f8ad5fe139a65433c1 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Tue, 22 May 2012 23:37:58 -0400 Subject: add $HOME/.local/bin to PATH if it exists --- .profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.profile') diff --git a/.profile b/.profile index b07cfa0..d2a1e6c 100644 --- a/.profile +++ b/.profile @@ -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" -- cgit v1.2.3-2-g168b