First check in after renaming to sl-base

This commit is contained in:
2020-08-01 12:49:39 -05:00
commit bb12964fdc
15 changed files with 391 additions and 0 deletions

18
CONFIG/etc/bashrc Normal file
View File

@@ -0,0 +1,18 @@
# Setup for /bin/ls and /bin/grep to support color
if [ -f "/etc/dircolors" ] ; then
eval $(dircolors -b /etc/dircolors)
fi
if [ -f "$HOME/.dircolors" ] ; then
eval $(dircolors -b $HOME/.dircolors)
fi
# Prompt
if [ "`id -u`" -eq 0 ]; then
export PS1='\u@\h:\w# '
else
export PS1='\u@\h:\w$ '
fi
alias ls='ls --color=auto'
alias grep='grep --color=auto'