1
0
Fork 0

bashrc, zshrc: get rid of at sign; i3: new KeePassXC match rule

This commit is contained in:
Von Random 2019-11-26 15:25:39 +03:00
parent 691ed29ba5
commit e0d7da13ff
3 changed files with 4 additions and 4 deletions

2
bashrc
View file

@ -23,7 +23,7 @@ prompt_command() {
}
((UID)) && ps_clr=4 || ps_clr=1
# just a colored version of [ $USER@$HOSTNAME ~ ]
PS1='\[\e[47;30m\][ \[\e[3'"$ps_clr"'m\]\u\[\e[30m\]@\h \[\e[32m\w\[\e[30m\] ]\[\e[0m\]\n\$ '
PS1='\[\e[47;30m\][ \[\e[3'"$ps_clr"'m\]\u\[\e[30m\] \h \[\e[32m\w\[\e[30m\] ]\[\e[0m\]\n\$ '
unset ps_clr
PROMPT_COMMAND=prompt_command
# }}}