Assume xterm has 256 colors
This commit is contained in:
parent
411686c795
commit
9a1b52eee2
12
.znewterm
12
.znewterm
|
@ -28,6 +28,18 @@ then
|
||||||
TERM=xterm
|
TERM=xterm
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ $TERM == xterm ]]
|
||||||
|
then
|
||||||
|
for t in xterm-256color xterm+256color
|
||||||
|
do
|
||||||
|
if [[ -f /usr/share/terminfo/x/$t ]]
|
||||||
|
then
|
||||||
|
TERM=$t
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
case "$TERM" in
|
case "$TERM" in
|
||||||
xterm*|screen)
|
xterm*|screen)
|
||||||
# indicated exit status by smiley (suggested by Stig Sandbeck Mathisen)
|
# indicated exit status by smiley (suggested by Stig Sandbeck Mathisen)
|
||||||
|
|
Loading…
Reference in New Issue