From: Mike Frysinger Date: Wed, 18 Feb 2009 22:27:31 +0000 (-0500) Subject: do not whine if dircolors is not installed and enable core dumps X-Git-Url: https://git.wh0rd.org/?p=home.git;a=commitdiff_plain;h=fe776934b9cb4a6a341175cdde6326f641ad285d do not whine if dircolors is not installed and enable core dumps --- diff --git a/.bashrc b/.bashrc index 3433e4d..eedb448 100644 --- a/.bashrc +++ b/.bashrc @@ -23,10 +23,12 @@ unset LDPATH # KDE bs shopt -s checkwinsize -eval `dircolors` +eval `dircolors 2>/dev/null` [ -r /usr/local/src/blackfin/bin/bfin-alias ] && . /usr/local/src/blackfin/bin/bfin-alias # This line was appended by KDE # Make sure our customised gtkrc file is loaded. export GTK2_RC_FILES="$HOME/.gtkrc-2.0:$HOME/.kde/share/config/gtkrc-2.0:/etc/gtk-2.0/gtkrc" + +ulimit -c unlimited