Compare commits

...

5 commits

2 changed files with 69 additions and 25 deletions

View file

@ -15,6 +15,7 @@
la = l --all
lna = ln --all
lla = ll --all
lw = !watch -c -n 1 git log --color=always --graph --pretty=basic --all
s = status --short
ss = status

View file

@ -102,32 +102,75 @@ set-environment -gu SHLVL
#
# Style (status list, colors, ...)
#
set -g status-left ' ' # 󰄴 󰣕 󰬫 󰻃 󰪥 󰬪    󰡖 󰄱
set -g status-right '\
#[fg=brightblack] \
#{?client_prefix,#[fg=brightyellow],#[fg=brightblack]}#{pane_id}\
#[fg=brightblack]  \
#{?client_prefix,#[fg=brightyellow],#[fg=brightblack]}#{session_name}\
#[fg=brightblack]  \
#{?client_prefix,#[fg=brightyellow],#[fg=brightblack]}#{pid} @ #{host_short} '
setw -g window-status-current-format '\
#{?client_prefix,#[fg=brightyellow],#[fg=brightcyan]}#{window_index} \
#[bold]#[fg=blue]#{window_name}#[nobold] \
#{?client_prefix,#[fg=brightyellow],#[fg=brightcyan]}\
#{?pane_synchronized,󰵉 ,}#{?window_marked_flag,󰄵 ,}#{?window_zoomed_flag, ,}\
#[fg=brightblack]'
setw -g window-status-format '\
#{?client_prefix,#[fg=brightyellow],#{?window_last_flag,#[fg=cyan],#[fg=brightblack]}}\
#{window_index} \
#[fg=brightblack]#{window_name} \
#{?pane_synchronized,󰵉 ,}#{?window_marked_flag,󰄵 ,}#{?window_zoomed_flag, ,}\
#[fg=brightblack]'
set -g status-justify left
set -g status-style fg=white,bg=black
set -g pane-border-style fg=black
set -g pane-active-border-style fg=brightblue
set -g message-style fg=brightwhite,bg=black
set -g message-command-style fg=yellow,bg=black
set -g status-justify left
set -g status-left ""
set -g status-right-length 64
%hidden highlight="#b57614"
%hidden current_badge="#076678"
%hidden current_bg="#003848"
%hidden current_fg="#83a598"
%hidden window_badge="#665c54"
%hidden window_fg="#7c6f64"
%hidden flags="#{?pane_synchronized,󰵉 ,}#{?window_marked_flag,󰄵 ,}#{?window_zoomed_flag, ,}"
%if "${TMUX_ROUNDED}"
%hidden background="#131516"
%hidden window_bg="#282828"
set -g status-style bg=${background}
setw -g window-status-format "\
#[fg=#{?client_prefix,${highlight},${window_badge}}]#[reverse]#{window_index} #[noreverse]\
#[fg=#{?window_last_flag,${current_fg},${window_fg}} bg=${window_bg}] #{window_name} ${flags}\
#[fg=${window_bg} bg=${background}] "
setw -g window-status-current-format "\
#[fg=#{?client_prefix,${highlight},${current_badge}}]#[reverse]#{window_index} #[noreverse]\
#[fg=${current_fg} bg=${current_bg}] #{window_name} ${flags}\
#[fg=${current_bg} bg=${background}] "
pill_begin="#[fg=#{?client_prefix,${highlight},${window_badge}}]#[reverse]"
pill_mid="#[noreverse]#[fg=${window_fg} bg=${window_bg}]"
pill_end="#[fg=${window_bg} bg=${background}]"
set -g status-right "\
${pill_begin}󰈷 ${pill_mid} #{pane_id}${pill_end} \
${pill_begin} ${pill_mid} #{session_name}${pill_end} \
${pill_begin} ${pill_mid} #{pid}${pill_end} \
${pill_begin}󱡶 ${pill_mid} #{host_short}${pill_end} "
%else
%hidden background="#1d2021"
set -g status-style bg=${background}
setw -g window-status-format "\
#[fg=${background} bg=#{?client_prefix,${highlight},${window_badge}} bold] #{window_index} \
#[fg=#{?window_last_flag,${current_fg},${window_fg}} bg=${background} nobold] #{window_name} ${flags}\
#[default] "
setw -g window-status-current-format "\
#[fg=${background} bg=#{?client_prefix,${highlight},${current_badge}} bold] #{window_index} \
#[fg=${current_fg} bg=${current_bg} nobold] #{window_name} ${flags}\
#[default] "
box_begin="#[fg=${background} bg=#{?client_prefix,${highlight},${window_badge}} bold] "
box_mid="#[fg=${window_fg} bg=${background} nobold]"
box_end="#[default]"
set -g status-right "\
${box_begin}󰈷 ${box_mid} #{pane_id} ${box_end} \
${box_begin} ${box_mid} #{session_name} ${box_end} \
${box_begin} ${box_mid} #{pid} ${box_end} \
${box_begin}󱡶 ${box_mid} #{host_short} ${box_end}"
%endif