feat: Added command

This commit is contained in:
2026-06-20 18:40:57 +05:30
parent 0978403fa2
commit bad324a5cd
16 changed files with 182 additions and 218 deletions

View File

@@ -41,6 +41,23 @@ b yazi
b nvim,yazi
```
### Inspecting and Editing Installers (`b ware`)
If you want to inspect and edit an installer script before running it (for example, to change version numbers, paths, or customize the logic), you can use the intermediate `b ware` command:
```bash
b ware nvim
b ware starship,zoxide
```
This opens the installer script in your preferred `$EDITOR` (defaulting to standard terminal editors if `$EDITOR` is unset). After you edit and close the file, the modified script runs automatically.
To bypass the editor and install the tool directly using the `ware` command, append the `-y` flag:
```bash
b ware nvim -y
```
You can also edit configurations located in your `~/.config/` directory by running:
```bash