tmux icon indicating copy to clipboard operation
tmux copied to clipboard

Kitty graphics request stuck in the window title

Open kommander opened this issue 2 months ago • 0 comments

I am not requesting help with my configuration and believe something is genuinely broken.

  • [x] Something is really actually broken.

Is there an existing issue outlining your problem?

Describe your problem.

Sending this sequence

#!/bin/bash

# Send the escape sequence
printf '\x1b_Gi=31337,s=1,v=1,a=q,t=d,f=24;AAAA\x1b\\\x1b[c'
sleep 5

causes the top line to show it as title, which does not happen for other output or sequences as far as I can tell.

Image

Is there something I can do as app developer to not have that be treated as title? I can't tell if there is something wrong with catppuccin/tmux or the sequence, although it does not happen without the theme.

Paste your configuration.

set -g @catppuccin_flavor 'mocha' # latte, frappe, macchiato or mocha set -g @catppuccin_window_status_style "rounded"

Configure date_time module

set -g @catppuccin_date_time_text "%H:%M"

Configure directory module

set -g @catppuccin_directory_text "#{b:pane_current_path}"

Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)

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

Load catppuccin (must be after TPM loads the plugin)

run ~/.tmux/plugins/catppuccin/tmux/catppuccin.tmux

Configure status line (must be after loading catppuccin)

set -g status-right-length 100 set -g status-left-length 100 set -g status-left "#{E:@catppuccin_status_session}" set -g status-right "#{E:@catppuccin_status_directory}" set -ag status-right "#{E:@catppuccin_status_user}" set -ag status-right "#{E:@catppuccin_status_date_time}" set -agF status-right "#{E:@catppuccin_status_battery}"

Attach screenshots.

No response

What tmux version are you seeing the issue on?

3.5a

What shell are you using?

zsh

Any additional comments?

No response

kommander avatar Nov 14 '25 13:11 kommander