betterterm 2.0.1 → 2.0.3

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/README.md CHANGED
@@ -5,7 +5,7 @@ Terminal IDE setup: Ghostty + tmux + yazi + carbonyl browser.
5
5
  ## Install
6
6
 
7
7
  ```bash
8
- npx betterterm
8
+ npx betterterm@latest
9
9
  ```
10
10
 
11
11
  ## Requirements
package/configs/tmux.conf CHANGED
@@ -51,7 +51,41 @@ bind z resize-pane -Z
51
51
  bind a setw synchronize-panes
52
52
 
53
53
  # Help menu (Cmd+?)
54
- bind ? run-shell "~/.local/bin/help-menu.sh"
54
+ unbind ?
55
+ bind ? display-menu -T "#[align=centre,bold] betterterm " -x C -y C \
56
+ "" \
57
+ "#[bold]── Files & Browser ──" "" "" \
58
+ "File Explorer Cmd+E" e "run-shell '~/.local/bin/toggle-yazi.sh'" \
59
+ "Toggle Browser Cmd+Y" b "run-shell '~/.local/bin/toggle-browser.sh'" \
60
+ "Close Browser Cmd+Sh+Y" B "run-shell '~/.local/bin/close-browser.sh'" \
61
+ "Browser URL Bar Cmd+L" l "run-shell '~/.local/bin/browser-nav.sh'" \
62
+ "" \
63
+ "#[bold]── Layout Presets ──" "" "" \
64
+ "Focus 1 pane Cmd+1" 1 "run-shell '~/.local/bin/layout.sh 1'" \
65
+ "Dual 2 panes Cmd+2" 2 "run-shell '~/.local/bin/layout.sh 2'" \
66
+ "Triple 3 panes Cmd+3" 3 "run-shell '~/.local/bin/layout.sh 3'" \
67
+ "Quad 4 panes Cmd+4" 4 "run-shell '~/.local/bin/layout.sh 4'" \
68
+ "" \
69
+ "#[bold]── Panes ──" "" "" \
70
+ "Zoom Toggle Cmd+Z" z "resize-pane -Z" \
71
+ "Broadcast Toggle Cmd+Sh+B" a "setw synchronize-panes" \
72
+ "Swap Up Cmd+Sh+Up" K "swap-pane -U" \
73
+ "Swap Down Cmd+Sh+Down" J "swap-pane -D" \
74
+ "Swap Left Cmd+Sh+Left" H "run-shell '~/.local/bin/swap-pane.sh left'" \
75
+ "Swap Right Cmd+Sh+Right" L "run-shell '~/.local/bin/swap-pane.sh right'" \
76
+ "" \
77
+ "#[bold]── Windows ──" "" "" \
78
+ "New Window Cmd+T" c "new-window" \
79
+ "Next Window Cmd+]" n "next-window" \
80
+ "Previous Window Cmd+[" p "previous-window" \
81
+ "Split Vertical Cmd+\\" "|" "split-window -h -c '#{pane_current_path}'" \
82
+ "Split Horizontal Cmd+-" - "split-window -v -c '#{pane_current_path}'" \
83
+ "" \
84
+ "#[bold]── Sessions ──" "" "" \
85
+ "Save Session Cmd+S" S "run-shell '~/.local/bin/session-save.sh'" \
86
+ "Load Session Cmd+O" O "run-shell '~/.local/bin/session-load.sh'" \
87
+ "" \
88
+ "Reload Config Cmd+R" r "source-file ~/.tmux.conf \\; display 'Config reloaded'"
55
89
 
56
90
  # Pane swap
57
91
  bind K swap-pane -U
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "betterterm",
3
- "version": "2.0.1",
3
+ "version": "2.0.3",
4
4
  "description": "Terminal IDE setup: Ghostty + tmux + yazi + carbonyl browser",
5
5
  "bin": {
6
6
  "betterterm": "bin/cli.js"