tinker-agent 1.0.11 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/agent-bridge-tmux +4 -4
- package/package.json +1 -1
package/bin/agent-bridge-tmux
CHANGED
|
@@ -36,10 +36,10 @@ tmux set-option -t "$SESSION" status on
|
|
|
36
36
|
tmux set-option -t "$SESSION" status-interval 1
|
|
37
37
|
tmux set-option -t "$SESSION" status-style "bg=black,fg=white"
|
|
38
38
|
# Set lengths globally and for session to ensure they stick
|
|
39
|
-
tmux set-option -g status-left-length
|
|
40
|
-
tmux set-option -g status-right-length
|
|
41
|
-
tmux set-option -t "$SESSION" status-left-length
|
|
42
|
-
tmux set-option -t "$SESSION" status-right-length
|
|
39
|
+
tmux set-option -g status-left-length 30
|
|
40
|
+
tmux set-option -g status-right-length 300
|
|
41
|
+
tmux set-option -t "$SESSION" status-left-length 30
|
|
42
|
+
tmux set-option -t "$SESSION" status-right-length 300
|
|
43
43
|
tmux set-option -t "$SESSION" status-left "#[fg=cyan,bold]🤖 $AGENT_TYPE #[fg=cyan]│ "
|
|
44
44
|
tmux set-option -t "$SESSION" status-right "#[fg=green]#(cat $STATUS_FILE 2>/dev/null || echo '❓') #[fg=cyan]│ #[fg=white]%H:%M:%S"
|
|
45
45
|
tmux set-option -t "$SESSION" window-status-format ""
|