]> git.wh0rd.org Git - home.git/blob - .profile.d/utf8.sh
timezone: fix date alias when using it with args
[home.git] / .profile.d / utf8.sh
1 if [ "${TERM}" != "dumb" ]; then
2         # First use the temp transition.  Not all terminals support the next mode.
3         printf '\e%%G'
4         # Then use the perm transition and hope it works.
5         printf '\e%%/I'
6         # Wipe out things in case the terminal doesn't either escape sequence.
7         printf '\r     \r'
8
9         # Tell ncurses to not be dumb.
10         export NCURSES_NO_UTF8_ACS=1
11 fi