diff options
Diffstat (limited to '.bashrc')
| -rw-r--r-- | .bashrc | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -14,7 +14,12 @@ export HISTCONTROL=ignoredups:erasedups export EDITOR='vim' export TERM="xterm-256color" export GREP_OPTIONS="--color=auto" -export PS1='[\h]: \W \$ ' +if [ -f /etc/os-release ]; then + . /etc/os-release + export PS1="[$ID@\h]: \W \$ " +else + export PS1='[\h]: \W \$ ' +fi export LC_ALL=en_US.UTF-8 export LANG=en_US.UTF-8 |
