diff --git a/.dracula.tmux.swp b/.dracula.tmux.swp index 8e17dbb..089cd0b 100644 Binary files a/.dracula.tmux.swp and b/.dracula.tmux.swp differ diff --git a/dracula.tmux b/dracula.tmux old mode 100644 new mode 100755 index 87c1027..d58ec3b --- a/dracula.tmux +++ b/dracula.tmux @@ -34,8 +34,18 @@ main() tmux set-option -g status-style-fg "${purple}" tmux set-option -g status-interval 1 + # left tmux set-option -g status-left "#[bg=${foreground_color}]#[fg=${background_color}]#{?client_prefix,#[bg=${pink}],} ☺" - tmux set-option -ga status-left "#[bg=${current_line_color}]#[fg=${pink}] #{?window_zoomed_flag, ↕ , }" + # right + tmux set-option -g status-right "#[fg=${cyan},bg=${current_line_color}]#[fg=${current_line_color},bg=${cyan}] #(tmux-mem-cpu-load -g 5 --interval 2) " + tmux set-option -ga status-right "#[fg=${pink},bg=${cyan}]#[fg=${current_line_color},bg=${pink}] #(${uptime | cut -f 4-5 -d " " | cut -f 1 -d ","}) " + tmux set-option -ga status-right "#[fg={purple},bg=${pink}][fg=${foreground_color},bg=${purple}] %a %H:%M:%S #[fg=${comment_color}]%Y-%m-%d " + + # window status + tmux set-window-option -g window-status-style "fg=${purple}, bg=${background_color}" + tmux set-window-option -g window-status-current-style "fg=${pink}, bg=${background_color}" + tmux set-window-option -g windows-status-current-format "#[fg=current_line_color]#[bg=${purple}][fg=${foreground_color}]#[bg=${purple}] #I #W #[fg=${purple}]#[bg=${current_line_color}]" } +