Browse Source

.bashrc: changed to take screen|xterm|rxvt as good $TERM

master
Alejandro Mery 16 years ago
parent
commit
659c464f1f
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      .bashrc

+ 6
- 2
.bashrc

@ -47,9 +47,13 @@ if [ -n "$PS1" ]; then
# standarise $TERM
case "$TERM" in
nxterm)
export TERM=xterm ;;
export TERM=xterm
;;
screen|xterm|rxvt)
;;
*)
echo "$TERM: Unknown TERM value." ;;
echo "$TERM: Unknown TERM value."
;;
esac
# get a nicer $PS1

Loading…
Cancel
Save