tmux: Fix tmuxline statusbar coloring
In tmux 3.2, the way status-style and status-bg interact has been changed, simply removed my default bg coloring to fix it. This should be fine since 99% of the time my tmux statuline coloring is taken care of by the vim plugin anyway.
This commit is contained in:
parent
ac4a78f43d
commit
bf547417ce
2 changed files with 2 additions and 1 deletions
|
@ -12,4 +12,6 @@ new-window -n history
|
|||
send-keys "cd ${XDG_DATA_HOME:-~/.local/share}/task/; fd . | entr -c task ghistory.monthly" C-m
|
||||
split-window -v -l 80% "cd ${XDG_DATA_HOME:-~/.local/share}/task/; fd . | entr -c task ghistory.weekly"
|
||||
split-window -v -l 60% "cd ${XDG_DATA_HOME:-~/.local/share}/task/; fd . | entr -c task ghistory.daily"
|
||||
split-window -v -l 10%
|
||||
send-keys "nvim ${XDG_CONFIG_HOME:-~/.config}/task/taskrc" C-m
|
||||
select-window -t 2
|
||||
|
|
|
@ -133,7 +133,6 @@ set -g status "on"
|
|||
set -g status-style "none"
|
||||
set -g status-style "none"
|
||||
set -g status-left-length "100"
|
||||
set -g status-bg "#2e2e2e"
|
||||
set -g status-right-length "100"
|
||||
setw -g window-status-style fg="#c8c8c8",bg="#2e2e2e","none"
|
||||
setw -g window-status-activity-style bg="#2e2e2e",fg="#c8c8c8","underscore"
|
||||
|
|
Loading…
Reference in a new issue