How to fix gap where background color is missing? #436
-
I have a gap on the right side where the background color is missing: I couldn't find a relevant configuration. In the So how can I get rid of that gap? Here's what I changed in the default config: export TMUX_POWERLINE_DEBUG_MODE_ENABLED="false"
export TMUX_POWERLINE_PATCHED_FONT_IN_USE="true"
export TMUX_POWERLINE_THEME="default"
export TMUX_POWERLINE_DIR_USER_THEMES="${XDG_CONFIG_HOME:-$HOME/.config}/tmux-powerline/themes"
export TMUX_POWERLINE_DIR_USER_SEGMENTS="${XDG_CONFIG_HOME:-$HOME/.config}/tmux-powerline/segments"
export TMUX_POWERLINE_STATUS_VISIBILITY="on"
export TMUX_POWERLINE_WINDOW_STATUS_LINE=0
export TMUX_POWERLINE_STATUS_INTERVAL="1"
export TMUX_POWERLINE_STATUS_JUSTIFICATION="left"
export TMUX_POWERLINE_STATUS_LEFT_LENGTH="30"
export TMUX_POWERLINE_STATUS_RIGHT_LENGTH="90"
export TMUX_POWERLINE_WINDOW_STATUS_SEPARATOR=""
# Override theme left/right segments and colors
TMUX_POWERLINE_LEFT_STATUS_SEGMENTS=(
"tmux_session_info 148 234"
)
TMUX_POWERLINE_RIGHT_STATUS_SEGMENTS=(
"tmux_mem_cpu_load 234 136"
"date_day 235 136"
"date 235 136 ${TMUX_POWERLINE_SEPARATOR_LEFT_THIN}"
"time 235 136 ${TMUX_POWERLINE_SEPARATOR_LEFT_THIN}"
"xkb_layout 125 117"
) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @mikehaertl I can not reproduce this behaviour with the changes you mentioned in To further investigate your issue, i can manually reproduce your behaviour by setting one of the following (not 100% sure your screenshot shows "black" or "transparent" background color):
To see if
in your running tmux session and check if output looks like:
Besides that i don't have any concrete idea right now, but if you can provide some more information, i'll have another look. Details
The
|
Beta Was this translation helpful? Give feedback.
-
@xx4h Thanks to your suggestions I found it. I had these hidden somewhere in my age old
After removing them and restarting tmux everything looks good now 👍🏻 . Thanks a lot! |
Beta Was this translation helpful? Give feedback.
Hi @mikehaertl
I can not reproduce this behaviour with the changes you mentioned in
config.sh
.To further investigate your issue, i can manually reproduce your behaviour by setting one of the following (not 100% sure your screenshot shows "black" or "transparent" background color):
status-style
to "black" or "transparent":tmux set-option -g status-style default
for transparent)status-style
in~/.tmux.conf
after loading tmux-powerline:TMUX_POWERLINE_STATUS_STYLE
inconfig.sh
:To see if
status-style
is the problem you can run