# Claude Code sessions — tools/claude-sessions/. A private server (tmux -L claude), # so nothing here touches any other tmux use on the Pi. set -g default-terminal "tmux-256color" set -as terminal-features ",xterm*:RGB" set -s escape-time 10 # Esc reaches Claude at once, not after tmux's default 500 ms set -g focus-events on set -g history-limit 50000 set -g base-index 1 set -g renumber-windows on # Mouse on: click a name in the tab bar to switch, the wheel scrolls back. # Hold SHIFT to drag-select with lxterminal's own selection instead. # A plain drag copies to the Wayland clipboard. set -g mouse on set -s set-clipboard off bind -T copy-mode MouseDragEnd1Pane send -X copy-pipe-and-cancel "wl-copy" bind -T copy-mode-vi MouseDragEnd1Pane send -X copy-pipe-and-cancel "wl-copy" # Ctrl-b is tmux's prefix AND Claude's "run in background" — press it twice for Claude. set -g status-style "bg=colour236,fg=colour250" set -g window-status-current-style "bg=colour166,fg=colour231,bold" set -g window-status-format " #I #W " set -g window-status-current-format " #I #W " set -g status-left "" set -g status-right-length 80 set -g status-interval 30 set -g status-right "#(~/.local/share/claude-sessions/claude-sessions.py tmux-status) %H:%M "