mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-02 15:59:22 +01:00
7 lines
182 B
Bash
7 lines
182 B
Bash
|
#!/usr/bin/env bash
|
||
|
# Intended for systems with ncurses < 6 which is missing TERMINFO
|
||
|
# for tmux-256color.
|
||
|
if [[ $TERM == 'tmux-256color' ]]; then
|
||
|
export TERM=screen-256color
|
||
|
fi
|