1
0
Fork 0

bashrc: fix missing symbol; i3, kitty: new font in town; vim: the usual

This commit is contained in:
Von Random 2020-01-17 18:43:39 +03:00
parent e0d7da13ff
commit 317c416c0d
5 changed files with 33 additions and 48 deletions

4
bashrc
View file

@ -22,8 +22,8 @@ prompt_command() {
esac
}
((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\$ '
# 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\$ '
unset ps_clr
PROMPT_COMMAND=prompt_command
# }}}