changeset 668:a74af5498b31

update tmux colors
author zegervdv <zegervdv@me.com>
date Tue, 27 Sep 2022 21:32:06 +0200
parents 1da48e5c51cf
children e35b47e4f3e8
files dot_tmux.conf
diffstat 1 files changed, 5 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- 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}"