mirror of
https://github.com/opensiriusfox/bashrc.d.git
synced 2025-06-16 12:20:24 -07:00
16 lines
No EOL
390 B
Bash
16 lines
No EOL
390 B
Bash
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
COLOR_RST='\[\e[39m\]'
|
|
ULINE='\[\e[4m\]'
|
|
ULINE_RST='\[\e[24m\]'
|
|
|
|
COLOR_NORM='\[\e[34m\]' # Rem Blue
|
|
alt_hostname="${ULINE}${COLOR_NORM}Rem${COLOR_RST}-the-${COLOR_NORM}Blue${COLOR_RST}${ULINE_RST}"
|
|
|
|
export PS1="\[\e[01;32m\]\u\[\e[00m\]@\[\e[01;32m\]${alt_hostname}"
|
|
export PS1+="\[\e[01;34m\] \w \\$\[\e[00m\] "
|
|
|
|
unset $alt_hostname $COLOR_NORM $ULINE $ULINE_RST $COLOR_RST |