1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | set -g status-utf8 "on"
set -g bell-action any
set -g status-justify 'centre'
set -g status-left-length '100'
set -g status 'on'
set -g status-right-length '100'
set -g status-right-attr 'none'
set -g status-attr 'none'
set -g status-utf8 'on'
set -g status-left-attr 'none'
setw -g window-status-attr 'none'
set -g status-bg default
set -g status-fg "#95a5a6"
setw -g window-status-activity-attr 'none'
set -g status-left '[#S::#W] <#(whoami) -#(uptime | cut -d " " -f 1,2,3)>'
set -g status-right '<%r %a %Y> [#H]'
setw -g window-status-format ' <#[default] #I - #W > '
setw -g window-status-current-format ' < #I - #W (#F) > '
|
x
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | set -g default-terminal "screen-256color"
set -g status-utf8 "on"
set -g bell-action any
set -g status-bg 'colour235'
set -g message-command-fg 'colour222'
set -g status-justify 'centre'
set -g status-left-length '100'
set -g status 'on'
set -g pane-active-border-fg 'colour154'
set -g message-bg 'colour238'
set -g status-right-length '100'
set -g status-right-attr 'none'
set -g message-fg 'colour222'
set -g message-command-bg 'colour238'
set -g status-attr 'none'
set -g status-utf8 'on'
set -g pane-border-fg 'colour238'
set -g status-left-attr 'none'
setw -g window-status-fg 'colour121'
setw -g window-status-attr 'none'
setw -g window-status-activity-bg 'colour235'
setw -g window-status-activity-attr 'none'
setw -g window-status-activity-fg 'colour154'
setw -g window-status-bg 'colour235'
set -g status-left '#[fg=colour232,bg=colour154][#S#[fg=colour154,bg=colour238,nobold,nounderscore,noitalics]::#[fg=colour222,bg=colour238]#W#[fg=colour238,bg=colour235,nobold,nounderscore,noitalics]] <#[fg=colour121,bg=colour235]#(whoami) -#(uptime | cut -d " " -f 1,2,3)#[fg=colour235,bg=colour235,nobold,nounderscore,noitalics]>'
set -g status-right '#[fg=colour235,bg=colour235,nobold,nounderscore,noitalics]<#[fg=colour121,bg=colour235]%r%a %Y> [#[fg=colour222,bg=colour238]#H#[fg=colour154,bg=colour238,nobold,nounderscore,noitalics]]'
setw -g window-status-format '#[fg=colour235,bg=colour235,nobold,nounderscore,noitalics] <#[default] #I - #W #[fg=colour235,bg=colour235,nobold,nounderscore,noitalics]> '
setw -g window-status-current-format '#[fg=colour235,bg=colour238,nobold,nounderscore,noitalics] <#[fg=colour222,bg=colour238] #I - #W (#F) #[fg=colour238,bg=colour235,nobold,nounderscore,noitalics]> '
|
x
Notes
Well, this code is kind of hackish, so I don’t expect it to work on other people’s computers.
The point is to make the bar-bg transparent, but that didn’t' work with any of the attrs, so I just assigned the bg to colors that don’t exist on my setup.
Works 10/10 for me, probably not for you.