vscripts/termcompat

10 lines
262 B
Text
Raw Normal View History

#!/usr/bin/env bash
# run with more compatible TERM value
typeset -A terms=(
2020-02-11 14:10:03 +02:00
[xterm-kitty]='xterm'
[rxvt-unicode-256color]='rxvt-unicode'
[st-256color]='xterm-256color'
[tmux-256color]='screen.xterm-new'
)
TERM="${terms[$TERM]:-$TERM}" exec "$@"