Delete 'bash/etc-skel/.bashrc'

No longer used. Changes made to /etc/bash.bashrc instead.
This commit is contained in:
Asif Bacchus 2018-08-19 19:17:56 -06:00
parent 4ba1c4a6fb
commit f23d86476b
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
### append the following to the end of /etc/skel/.bashrc
# Command aliases available for logins via 'su' or 'sudo -u'
alias ll='ls $LS_OPTIONS -l'
alias l='ls $LS_OPTIONS -lA'
alias rm='rm -i'
alias mv='mv -i'
alias cp='cp -i'
# Colourize prompt based on type of user
# user@host will appear red(31) for ROOT users, all others in green(32)
# prompt format: (white)[12-hr time][space](red/green)user@hostname(white):[space](yellow)path/to/current/dir[space](red/green)$[space]
force_color_prompt=yes
if [ $(id -u) -eq 0 ];
then
PS1="\[\e[37m\][\[\e[m\]\[\e[37m\]\@\[\e[m\]\[\e[37m\]]\[\e[m\] \[\e[31m\]\u\[\e[m\]\[\e[31m\]@\[\e[m\]\[\e[31m\]\h\[\e[m\]\[\e[37m\]:\[\e[m\] \[\e[33m\]\w\[\e[m\] \[\e[31m\]\\$\[\e[m\] "
else
PS1="\[\e[37m\][\[\e[m\]\[\e[37m\]\@\[\e[m\]\[\e[37m\]]\[\e[m\] \[\e[32m\]\u\[\e[m\]\[\e[32m\]@\[\e[m\]\[\e[32m\]\h\[\e[m\]\[\e[37m\]:\[\e[m\] \[\e[33m\]\w\[\e[m\] \[\e[32m\]\\$\[\e[m\] "
fi