Mainly just moved configs to new CONFIG directory format
This commit is contained in:
18
CONFIG/etc/bashrc
Normal file
18
CONFIG/etc/bashrc
Normal 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'
|
||||
Reference in New Issue
Block a user