Add some missing tmux flags !
This commit is contained in:
parent
53677b5706
commit
b5f4f84368
|
@ -4,6 +4,7 @@
|
||||||
# Changes:
|
# Changes:
|
||||||
# * Update status-right
|
# * Update status-right
|
||||||
# * Update color24 -> color125
|
# * Update color24 -> color125
|
||||||
|
# * Add some flags (window_last, window_zoomed,…)
|
||||||
#
|
#
|
||||||
# DESIGN
|
# DESIGN
|
||||||
#
|
#
|
||||||
|
@ -59,9 +60,10 @@ set -g status-position bottom
|
||||||
# new: window-style
|
# new: window-style
|
||||||
setw -g window-status-format " #F#I:#W#F "
|
setw -g window-status-format " #F#I:#W#F "
|
||||||
setw -g window-status-current-format " #F#I:#W#F "
|
setw -g window-status-current-format " #F#I:#W#F "
|
||||||
setw -g window-status-format "#[fg=white]#[bg=color59] #I #[fg=color59]#[bg=color254] #W "
|
#setw -g window-status-format "#[fg=white]#[bg=color59] #I #[fg=color59]#[bg=color254] #W "
|
||||||
|
setw -g window-status-format "#[fg=white]#[bg=color59] #I #[fg=color59]#[bg=color254] #W#[fg=color125]#{?window_last_flag,⎗ ,}#{?window_zoomed_flag,🔍,} "
|
||||||
#setw -g window-status-current-format "#[fg=white]#[bg=color24] #I #[fg=color24]#[bg=color254] #W "
|
#setw -g window-status-current-format "#[fg=white]#[bg=color24] #I #[fg=color24]#[bg=color254] #W "
|
||||||
setw -g window-status-current-format "#[fg=color255]#[bg=color125] #I #[fg=color125]#[bg=color254] #W "
|
setw -g window-status-current-format "#[fg=color255]#[bg=color125] #I #[fg=color125]#[bg=color254] #W#{?window_zoomed_flag,🔍,} "
|
||||||
#setw -g window-status-current-bg pink
|
#setw -g window-status-current-bg pink
|
||||||
#setw -g window-status-current-fg grey
|
#setw -g window-status-current-fg grey
|
||||||
#setw -g window-status-current-attr dim
|
#setw -g window-status-current-attr dim
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
# * Update status-right
|
# * Update status-right
|
||||||
# * Invert forground (color24) and background (black/grey) to increase difference
|
# * Invert forground (color24) and background (black/grey) to increase difference
|
||||||
# with local tmux.
|
# with local tmux.
|
||||||
|
# * Add some flags (window_last, window_zoomed,…)
|
||||||
#
|
#
|
||||||
# DESIGN
|
# DESIGN
|
||||||
#
|
#
|
||||||
|
@ -38,8 +39,8 @@ set -g status-position bottom
|
||||||
# new: window-style
|
# new: window-style
|
||||||
setw -g window-status-format " #F#I:#W#F "
|
setw -g window-status-format " #F#I:#W#F "
|
||||||
setw -g window-status-current-format " #F#I:#W#F "
|
setw -g window-status-current-format " #F#I:#W#F "
|
||||||
setw -g window-status-format "#[fg=color0,bold]#[bg=color24]#I:#W "
|
setw -g window-status-format "#[fg=color0,bold]#[bg=color24]#I:#W#[fg=color255]#{?window_last_flag,⎗ ,}#{?window_zoomed_flag,🔍,}"
|
||||||
setw -g window-status-current-format "#[fg=color255]#[bg=color0]#I:#[fg=color24,bold]#W "
|
setw -g window-status-current-format "#[fg=color255]#[bg=color0]#I:#[fg=color24,bold]#W#{?window_zoomed_flag,🔍,} "
|
||||||
#setw -g window-status-current-bg pink
|
#setw -g window-status-current-bg pink
|
||||||
#setw -g window-status-current-fg grey
|
#setw -g window-status-current-fg grey
|
||||||
#setw -g window-status-current-attr dim
|
#setw -g window-status-current-attr dim
|
||||||
|
|
Loading…
Reference in New Issue