8 lines
258 B
Text
8 lines
258 B
Text
|
# If not running interactively, don't do anything else
|
||
|
[[ $- != *i* ]] && return
|
||
|
|
||
|
# add a fancy colored prompt. may be best to copy and alter colors for machine Identification
|
||
|
|
||
|
export PS1='\[\033[01;32m\]\u@\h\[\033[00m\] \[\033[01;34m\]\w \$\[\033[00m\] '
|
||
|
|