Show a bar indicator whenever tmux has flagged a window, the same state that highlights the tab, and jump to it on click or with Super + Ctrl + J. Tmux hooks push the state to the shell, so nothing polls while no pane is waiting. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
18 lines
699 B
Bash
18 lines
699 B
Bash
echo "Add tmux hooks that surface waiting windows in the bar"
|
|
|
|
tmux_config="$HOME/.config/tmux/tmux.conf"
|
|
|
|
if [[ -f $tmux_config ]] && ! grep -q 'alert-bell' "$tmux_config"; then
|
|
cat >>"$tmux_config" <<'EOF'
|
|
|
|
# Alerts
|
|
set-hook -g alert-bell 'run-shell -b "omarchy-shell -q omarchy.indicators refresh"'
|
|
set-hook -g alert-activity 'run-shell -b "omarchy-shell -q omarchy.indicators refresh"'
|
|
set-hook -g alert-silence 'run-shell -b "omarchy-shell -q omarchy.indicators refresh"'
|
|
set-hook -g after-select-window 'run-shell -b "omarchy-shell -q omarchy.indicators refresh"'
|
|
set-hook -g client-session-changed 'run-shell -b "omarchy-shell -q omarchy.indicators refresh"'
|
|
EOF
|
|
|
|
omarchy-restart-tmux
|
|
fi
|