tmux style ref

This commit is contained in:
thek4n 2024-03-27 15:28:56 +03:00
parent 1d4cc70783
commit 0016fb1af2

View File

@ -1,20 +1,22 @@
# vim: ft=tmux
# misc
set -g bell-action none
set -g message-style 'fg=black bg=white bold'
set -ga update-environment 'DISPLAY' # Maybe fix DISPLAY?
# status style
set -g status-style 'bg=default,fg=white'
set -g status-justify centre # center windows in statusline
set -g status-left-length 40
set -g status-left "[#S@#H]"
set -g status-right '%d.%m.%Y %H:%M'
set -g status-style 'bg=default,fg=white'
set -g window-status-style 'bg=default'
set -g window-status-current-style 'bg=white,fg=black bold'
set -g window-status-format '#W#{?window_flags,#{window_flags}, }'
set -g window-status-current-format '#W#{?window_flags,#{window_flags}, }'
set -g message-style 'fg=black bg=white bold'
# window title style
set -g set-titles on
set -g set-titles-string '#S:#I.#P #W'
@ -22,7 +24,3 @@ set -g set-titles-string '#S:#I.#P #W'
# clock style
setw -g clock-mode-colour white
setw -g clock-mode-style 24
set -g bell-action none
set -ga update-environment 'DISPLAY' # Maybe fix DISPLAY?