summaryrefslogtreecommitdiff
path: root/termcompat
blob: ae5c9ff2ba8117ecf06dfbc43ef79f42e76adb93 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash
# run with more compatible TERM value
typeset -A terms=(
    [alacritty]='xterm'
    [xterm-kitty]='xterm'
    [rxvt-unicode-256color]='rxvt-unicode'
    [st-256color]='xterm-256color'
    [tmux-256color]='screen.xterm-new'
)
TERM="${terms[$TERM]:-$TERM}" exec "$@"