Added etc/ directory for config files in that directory, and added the systemwide bashrc
This commit is contained in:
parent
a92c8f19b0
commit
a13cbc3a44
21
etc/bash.bashrc
Normal file
21
etc/bash.bashrc
Normal file
|
@ -0,0 +1,21 @@
|
|||
#
|
||||
# /etc/bash.bashrc
|
||||
#
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
[[ $DISPLAY ]] && shopt -s checkwinsize
|
||||
|
||||
#PS1='[\u@\h \W]\$ '
|
||||
#PS1='\e[43m\u@\h\e[30m░▒▓\e(B\e[m$(pwd) $ '
|
||||
#PS2='\e[43m\e[30m ░▒▓\e(B\e[m>'
|
||||
|
||||
PS1='\[\033[43m\]\[\033[30m\]🭬\[\033[0;43m\]\u@\h\[\033[33m\]\[\033[40m\]🭬\[\033[0m\]$(pwd) $ '
|
||||
PS2='\[\033[43m\]\[\033[30m\]🭬\[\033[1;37m\] \[\033[0;33m\]\[\033[40m\]🭬\[\033[0m\]'
|
||||
|
||||
if [[ -r /usr/share/bash-completion/bash_completion ]]; then
|
||||
. /usr/share/bash-completion/bash_completion
|
||||
fi
|
||||
|
||||
alias vi='vim'
|
Loading…
Reference in a new issue