6 lines
151 B
Plaintext
6 lines
151 B
Plaintext
|
#!/bin/bash
|
||
|
# set a fancy prompt (non-color, unless we know we "want" color)
|
||
|
case "$TERM" in
|
||
|
xterm|xterm-color|*-256color) color_prompt=yes;;
|
||
|
esac
|