1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-20 10:53:23 -07:00

fix unicode in tmux

This commit is contained in:
Connor Olding 2019-06-05 20:53:38 -07:00
parent 6a9c108b70
commit 1a56ff5b93

View File

@ -2,7 +2,7 @@
if [ "$SHLVL" -le 1 ] && ! expr "$TERM" : screen >/dev/null; then
if which tmux >/dev/null 2>/dev/null; then
# create a new session called "what" or attach if it already exists
TZ=":/etc/localtime" tmux new -A -s what && exit
LANG="en_US.UTF-8" TZ=":/etc/localtime" tmux new -A -s what && exit
echo "tmux died ($?), continuing..."
fi
fi