mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-02 15:59:22 +01:00
Mikaela Suomalainen
6b46e82aaf
For older systems use tmux-old-ncurses.bash (also added in this commit) for forcing screen-256color instead. From what I have understood the difference is that screen-256color doesn't handle italics or something.
7 lines
182 B
Bash
Executable File
7 lines
182 B
Bash
Executable File
#!/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
|