Added 24 hour time to prefix + t: Issue #74

This commit is contained in:
Ethan Edwards 2020-10-05 18:54:12 -04:00
parent 15c8a75fd2
commit 2cd953d40e

View file

@ -83,8 +83,12 @@ main()
# sets refresh interval to every 5 seconds # sets refresh interval to every 5 seconds
tmux set-option -g status-interval $show_refresh tmux set-option -g status-interval $show_refresh
# set clock to 12 hour by default # set the prefix + t time format
tmux set-option -g clock-mode-style 12 if $show_military; then
tmux set-option -g clock-mode-style 24
else
tmux set-option -g clock-mode-style 12
fi
# set length # set length
tmux set-option -g status-left-length 100 tmux set-option -g status-left-length 100