diff --git a/.tmux.conf b/.tmux.conf index a81f736..6de9c24 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -694,10 +694,14 @@ run 'cut -c3- ~/.tmux.conf | sh -s _apply_configuration' # # on macOS though, make sure to use /usr/bin/infocmp to probe if it's availalbe system wide # case "$uname_s" in # *Darwin*) -# /usr/bin/infocmp -x tmux-256color > /dev/null 2>&1 && tmux set -g default-terminal 'tmux-256color' +# if /usr/bin/infocmp -x tmux-256color > /dev/null 2>&1; then +# tmux set -g default-terminal 'tmux-256color' +# fi # ;; # *) -# command infocmp -x tmux-256color > /dev/null 2>&1 && tmux set -g default-terminal 'tmux-256color' +# if command infocmp -x tmux-256color > /dev/null 2>&1; then +# tmux set -g default-terminal 'tmux-256color' +# fi # ;; # esac # }