tinker-agent 1.0.9 → 1.0.11

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.
@@ -35,6 +35,11 @@ tmux new-session -d -s "$SESSION" -x "$COLS" -y "$LINES"
35
35
  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
+ # Set lengths globally and for session to ensure they stick
39
+ tmux set-option -g status-left-length 50
40
+ tmux set-option -g status-right-length 150
41
+ tmux set-option -t "$SESSION" status-left-length 50
42
+ tmux set-option -t "$SESSION" status-right-length 150
38
43
  tmux set-option -t "$SESSION" status-left "#[fg=cyan,bold]🤖 $AGENT_TYPE #[fg=cyan]│ "
39
44
  tmux set-option -t "$SESSION" status-right "#[fg=green]#(cat $STATUS_FILE 2>/dev/null || echo '❓') #[fg=cyan]│ #[fg=white]%H:%M:%S"
40
45
  tmux set-option -t "$SESSION" window-status-format ""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tinker-agent",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "description": "Tinker Agent Runner",
5
5
  "bin": {
6
6
  "tinker-agent": "./run-tinker-agent.rb"