batipanel 0.4.32 → 0.4.34
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 +20 -10
- package/VERSION +1 -1
- package/install.sh +41 -820
- package/lib/layout.sh +2 -1
- package/lib/shell-setup.sh +2 -2
- package/package.json +2 -1
- package/scripts/install/files.sh +86 -0
- package/scripts/install/fonts.sh +168 -0
- package/scripts/install/shell-rc.sh +131 -0
- package/scripts/install/tmux-config.sh +72 -0
- package/scripts/install/tools.sh +383 -0
- package/scripts/install/utils.sh +180 -0
package/README.md
CHANGED
|
@@ -388,7 +388,9 @@ Your projects and settings are always preserved during upgrades.
|
|
|
388
388
|
|
|
389
389
|
---
|
|
390
390
|
|
|
391
|
-
## AI Telegram Bot (OpenClaw)
|
|
391
|
+
## AI Telegram Bot (OpenClaw) — Experimental
|
|
392
|
+
|
|
393
|
+
> **Note:** This feature is experimental and under active development. API and configuration may change.
|
|
392
394
|
|
|
393
395
|
Deploy a personal AI bot in an isolated Docker environment with one command.
|
|
394
396
|
|
|
@@ -441,26 +443,34 @@ All optional tools are auto-installed when possible. Missing tools gracefully fa
|
|
|
441
443
|
|
|
442
444
|
---
|
|
443
445
|
|
|
444
|
-
##
|
|
446
|
+
## Platform Support
|
|
445
447
|
|
|
446
|
-
| Platform |
|
|
447
|
-
|
|
448
|
-
| **macOS** | Terminal.app, iTerm2
|
|
449
|
-
| **
|
|
450
|
-
| **
|
|
448
|
+
| Platform | Status | Terminals Tested |
|
|
449
|
+
|----------|--------|------------------|
|
|
450
|
+
| **macOS** | Stable | Terminal.app, iTerm2 |
|
|
451
|
+
| **Ubuntu/Debian** | Stable | GNOME Terminal, default terminal |
|
|
452
|
+
| **Amazon Linux / CentOS** | Beta | default terminal (tmux 2.6+ required, auto-installed) |
|
|
453
|
+
| **Windows** | Beta | Windows Terminal + WSL2 |
|
|
454
|
+
| Other Linux | Community | Alacritty, Kitty, WezTerm, xterm |
|
|
451
455
|
|
|
452
456
|
### macOS Terminal.app (built-in)
|
|
453
457
|
|
|
454
458
|
batipanel works out of the box with macOS's built-in Terminal. The installer automatically:
|
|
455
459
|
|
|
456
|
-
-
|
|
457
|
-
-
|
|
458
|
-
- Applies **theme colors** (background, text, cursor)
|
|
460
|
+
- Creates a dedicated **batipanel** Terminal profile (your original profile is untouched)
|
|
461
|
+
- Installs **Nerd Font** (MesloLGS NF) via Homebrew and sets it on the profile
|
|
462
|
+
- Applies **theme colors** (background, text, cursor)
|
|
459
463
|
|
|
460
464
|
All layouts, panels, keyboard shortcuts, 256-color themes, Powerline arrows, and session resume work fully.
|
|
461
465
|
|
|
462
466
|
> **Want true color (24-bit)?** Use [iTerm2](https://iterm2.com) for the richest color experience. Terminal.app supports 256 colors which covers all themes well.
|
|
463
467
|
|
|
468
|
+
### Linux
|
|
469
|
+
|
|
470
|
+
The installer auto-installs Nerd Font to `~/.local/share/fonts`. You may need to **select the font manually** in your terminal's preferences (look for "MesloLGS NF" or "MesloLGS Nerd Font").
|
|
471
|
+
|
|
472
|
+
On distributions with old tmux (e.g. Amazon Linux 2 ships 1.8), the installer will attempt to install tmux 3.x automatically.
|
|
473
|
+
|
|
464
474
|
<details>
|
|
465
475
|
<summary><b>Troubleshooting</b></summary>
|
|
466
476
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.34
|