Tweak tmux theme

This commit is contained in:
Václav Uruba 2025-02-16 15:22:59 +01:00
parent 79a46119a9
commit 9e05f9cba8
Signed by: uruba
GPG Key ID: 9D8E987C4B2E1E9C

View File

@ -2,4 +2,28 @@ set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
# Colors
set -g @bg "#1A212E"
set -g @fg "#93A4C3"
set -g @green "#8BCD5B"
set -g @orange "#DD9046"
set -g @red "#F65866"
# Status bar
set -g status-position bottom
set -g status-justify left
set -g status-style 'fg=#{@green} bg=#{@bg}'
set -g status-right-style 'fg=#{@bg} bg=#{@orange} bold'
set -g status-right ' %Y-%m-%d %H:%M:%S '
set -g status-interval 1
setw -g window-status-current-style 'fg=#{@bg} bg=#{@green}'
setw -g window-status-current-format ' #I #W #F '
setw -g window-status-style 'fg=#{@green} bg=#{@bg}'
setw -g window-status-format ' #I #[fg=#{@fg}]#W #[fg=#{@orange}]#F '
setw -g window-status-bell-style 'fg=#{@orange} bg=#{@red} bold'
run '~/.tmux/plugins/tpm/tpm'