# HG changeset patch # User zegervdv # Date 1664307126 -7200 # Node ID a74af5498b3153f17b9d2cee62a621f60c061ad7 # Parent 1da48e5c51cfac57cec21e37d93b32c8348840e8 update tmux colors diff -r 1da48e5c51cf -r a74af5498b31 dot_tmux.conf --- a/dot_tmux.conf Tue Sep 27 20:57:45 2022 +0200 +++ b/dot_tmux.conf Tue Sep 27 21:32:06 2022 +0200 @@ -23,21 +23,18 @@ set -g status-position 'top' set -g status-left "" set -g status-right-length 200 -set -g status-right "#[fg=colour0,bg=colour5] vsim #[fg=colour0,bg=colour15] #(ps hux -u $(whoami) | grep 'vish' | grep -v -E 'grep|view' | wc -l) #[fg=colour3,bg=colour0] #[fg=colour0,bg=colour3] load #[fg=colour0,bg=colour15] #(cat /proc/loadavg | awk '{ print $3; }' | xargs printf '%2.2f') #[fg=colour3,bg=colour0] #[fg=colour0,bg=colour2] mem #[fg=colour0,bg=colour15] #(ps haux | awk -v user=$(whoami) '$1 ~ user { sum += $4 } END { print sum; }' | xargs printf '%2.2f')% #[fg=colour3,bg=colour0] #[fg=colour0,bg=colour1] time #[fg=colour0,bg=colour15] %d %b %l:%M %p #[fg=colour3,bg=colour0] #[fg=colour15,bg=colour8] #{session_name} #[fg=colour0,bg=colour0] " +set -g status-right "#[fg=white,bg=#7653c1] vsim #[fg=white,bg=#404a54] #(ps hux -u $(whoami) | grep 'vish' | grep -v -E 'grep|view' | wc -l) #[fg=colour3,bg=default] #[fg=colour0,bg=colour3] load #[fg=white,bg=#404a54] #(cat /proc/loadavg | awk '{ print $3; }' | xargs printf '%2.2f') #[fg=colour3,bg=default] #[fg=colour0,bg=#73b00a] mem #[fg=white,bg=#404a54] #(ps haux | awk -v user=$(whoami) '$1 ~ user { sum += $4 } END { print sum; }' | xargs printf '%2.2f')% #[fg=colour3,bg=default] #[fg=white,bg=#cf4f5f] time #[fg=white,bg=#404a54] %d %b %l:%M %p #[fg=colour3,bg=default] #[fg=colour15,bg=colour8] #{session_name} #[fg=colour0,bg=default]" # Tabs setw -g window-status-format " #I #W " -setw -g window-status-style fg=colour15 +setw -g window-status-style "fg=#404a54,bg=#e3ebf1" setw -g window-status-current-format " #I #W " -setw -g window-status-current-style fg=red +setw -g window-status-current-style "bg=#404a54,fg=#ffffff" set -g status-justify "left" -set -g status-bg "colour0" -set -g status-fg "colour7" -# set -g message-bg "colour0" -# set -g message-fg "colour8" -setw -g window-status-bell-style "fg=colour0,bg=colour5" +setw -g window-status-bell-style "fg=#ffffff,bg=#d44950" +setw -g mode-style "bg=#fbe9ad" bind s split-window -v -c "#{pane_current_path}" bind v split-window -h -c "#{pane_current_path}"