tmux icon indicating copy to clipboard operation
tmux copied to clipboard

I cannot add things to the status bar

Open billgsm opened this issue 1 year ago • 2 comments

Hi, first of all, thanks a lot for this theme it's truly beautiful :heart:.

I started trying nordtheme/tmux and everything was smooth except my pomodoro status that has stopped showing up into the status bar ever since I added nordtheme/tmux.

Here is my tmux.conf

~/.tmux.conf

# Use vi key bindings in copy mode
set-option -wg mode-keys vi
set-option -g default-shell /bin/zsh

# first window will have the index 1 instead of 0
set-option -g base-index 1

set-option -g history-limit 10000

# Disable the mouse
set-option -g mouse off

# Reload config and tell it
bind-key r source-file ~/.tmux.conf \; display "Yay reloaded tmux config"

# Pick a window easily with alt-<number>
bind-key -n M-0 select-window -t 0
bind-key -n M-1 select-window -t 1
bind-key -n M-2 select-window -t 2
bind-key -n M-3 select-window -t 3
bind-key -n M-4 select-window -t 4
bind-key -n M-5 select-window -t 5
bind-key -n M-6 select-window -t 6
bind-key -n M-7 select-window -t 7
bind-key -n M-8 select-window -t 8
bind-key -n M-9 select-window -t 9

set-option -g display-time 2000

# Plugins
#########

# {{{{{{{{{{{{{{{{{{{{{{{{{{{{{ 
set -g @plugin 'tmux-plugins/tpm'
# }}}}}}}}}}}}}}}}}}}}}}}}}}}}} 

# {{{{{{{{{{{{{{{{{{{{{{{{{{{{{ 
set -g @plugin 'tmux-plugins/tmux-sensible'
# }}}}}}}}}}}}}}}}}}}}}}}}}}}}} 

# {{{{{{{{{{{{{{{{{{{{{{{{{{{{{ 
set -g @plugin 'arcticicestudio/nord-tmux'
# }}}}}}}}}}}}}}}}}}}}}}}}}}}}} 


# {{{{{{{{{{{{{{{{{{{{{{{{{{{{{ 
set -g @plugin 'tmux-plugins/tmux-resurrect'
# }}}}}}}}}}}}}}}}}}}}}}}}}}}}}

# {{{{{{{{{{{{{{{{{{{{{{{{{{{{{
set -g @plugin 'sainnhe/tmux-fzf'
# }}}}}}}}}}}}}}}}}}}}}}}}}}}}}


# {{{{{{{{{{{{{{{{{{{{{{{{{{{{{
set -g @plugin 'olimorris/tmux-pomodoro-plus'

set-option -ag status-left "#{pomodoro_status}"

set-option -g @pomodoro_start 'T' 
set-option -g @pomodoro_cancel 'T'
set-option -g @pomodoro_granularity 'on'
set-option -g @pomodoro_on " 🍅"
set-option -g @pomodoro_complete "#[fg=green]🍅 "
set-option -g @pomodoro_notifications 'on'
set-option -g @pomodoro_sound 'on'
# }}}}}}}}}}}}}}}}}}}}}}}}}}}}}

run '~/.tmux/plugins/tpm/tpm'

When I activate nordtheme/tmux my pomodoro status does not show up

nordtheme/tmux enabled

image

But When I remove the theme and I start over, then I see the pomodoro status (the tomato)

tmux theme disabled

image

Any ideas please?

Environment:

❯ tmux -V
tmux 3.2a  
❯ kitty --version # I've even tried alacritty and ubuntu default terminal and the result is no different
kitty 0.21.2 created by Kovid Goyal

billgsm avatar Jun 04 '23 10:06 billgsm

I have the same issue, but I assume that pomodoro-plus will require an integration similar to the tmux-highlight or a complete override of the status bar from the user configuration. I ended up just moving on and trying to find a different pomodoro timer solution, but it would be great to see this plugin integrated into the nord theme. This is possibly related to https://github.com/nordtheme/tmux/issues/68

caquino avatar Jun 27 '23 21:06 caquino

hey there, just locate where this plugin is installed on your system and comment out these lines and paste them in your tmux.conf and modify to your heart's content

bakerbrandond avatar Oct 14 '23 04:10 bakerbrandond