mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 11:39:42 +00:00
8 lines
301 B
Bash
8 lines
301 B
Bash
# If the set $TERM variable doesn't match any configured terminfo entries
|
|
# fall back to xterm. This fixes SSH connections from unknown terminals
|
|
|
|
if ! infocmp "$TERM" &>/dev/null; then
|
|
echo "Setting \$TERM to xterm-256color due to missing terminfo entry for $TERM."
|
|
export TERM=xterm-256color
|
|
fi
|