Mercurial > dotfiles
comparison dot_tmux.conf @ 668:a74af5498b31
update tmux colors
author | zegervdv <zegervdv@me.com> |
---|---|
date | Tue, 27 Sep 2022 21:32:06 +0200 |
parents | ad5e870cd4b2 |
children | f2984842d6e2 |
comparison
equal
deleted
inserted
replaced
667:1da48e5c51cf | 668:a74af5498b31 |
---|---|
21 # Status bar | 21 # Status bar |
22 set -g set-titles 'off' | 22 set -g set-titles 'off' |
23 set -g status-position 'top' | 23 set -g status-position 'top' |
24 set -g status-left "" | 24 set -g status-left "" |
25 set -g status-right-length 200 | 25 set -g status-right-length 200 |
26 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] " | 26 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]" |
27 | 27 |
28 # Tabs | 28 # Tabs |
29 setw -g window-status-format " #I #W " | 29 setw -g window-status-format " #I #W " |
30 setw -g window-status-style fg=colour15 | 30 setw -g window-status-style "fg=#404a54,bg=#e3ebf1" |
31 setw -g window-status-current-format " #I #W " | 31 setw -g window-status-current-format " #I #W " |
32 setw -g window-status-current-style fg=red | 32 setw -g window-status-current-style "bg=#404a54,fg=#ffffff" |
33 | 33 |
34 set -g status-justify "left" | 34 set -g status-justify "left" |
35 set -g status-bg "colour0" | |
36 set -g status-fg "colour7" | |
37 # set -g message-bg "colour0" | |
38 # set -g message-fg "colour8" | |
39 | 35 |
40 setw -g window-status-bell-style "fg=colour0,bg=colour5" | 36 setw -g window-status-bell-style "fg=#ffffff,bg=#d44950" |
37 setw -g mode-style "bg=#fbe9ad" | |
41 | 38 |
42 bind s split-window -v -c "#{pane_current_path}" | 39 bind s split-window -v -c "#{pane_current_path}" |
43 bind v split-window -h -c "#{pane_current_path}" | 40 bind v split-window -h -c "#{pane_current_path}" |
44 bind c command-prompt -p "Name:" "new-window -c \"#{pane_current_path}\" -n %%" | 41 bind c command-prompt -p "Name:" "new-window -c \"#{pane_current_path}\" -n %%" |
45 | 42 |