2019-09-30 15:46:24 -07:00
|
|
|
# BB's API
|
2019-09-30 17:06:27 -07:00
|
|
|
|
2019-09-30 15:46:24 -07:00
|
|
|
In `bb`, all interaction (more or less) occurs through binding keypresses
|
|
|
|
(and mouse events) to shell scripts. These shell scripts can perform external
|
|
|
|
actions (like moving files around) or internal actions (like changing the
|
|
|
|
directory `bb` is displaying). When a shell script runs, `bb` creates a
|
|
|
|
temporary file, and scripts may write commands to this file to modify `bb`'s
|
|
|
|
internal state.
|
|
|
|
|
|
|
|
## Helper Functions
|
2019-09-30 17:06:27 -07:00
|
|
|
|
2020-04-09 00:08:26 -07:00
|
|
|
`bb` is bundled with some helper scripts for performing common tasks. These
|
2021-07-03 21:41:08 -07:00
|
|
|
scripts are installed to `/etc/bb/`, which is added to `bb`'s `$PATH`
|
2020-04-09 00:08:26 -07:00
|
|
|
environment variable at runtime. `~/.config/bb/` is also added to the `$PATH`
|
|
|
|
with higher priority, so you can override any of these scripts by putting your
|
|
|
|
own version there.
|
|
|
|
|
2021-01-28 22:32:42 -08:00
|
|
|
- `bbstartup`: The script run when `bb` first launches. It calls `bbkeys` by
|
2020-04-09 00:08:26 -07:00
|
|
|
default and sets up some configuration settings like which columns to display.
|
2021-01-28 22:32:42 -08:00
|
|
|
- `bbkeys`: The script called by `bb` to create all of `bb`'s key bindings.
|
2020-04-09 00:08:26 -07:00
|
|
|
It's currently very hacky, but it amounts to a bunch of calls to `bbcmd
|
|
|
|
bind:<key>:<script>`
|
|
|
|
- `bbshutdown`: The script run when `bb` exits. The default implementation saves
|
|
|
|
the current configuration settings to `~/.local/share/bb/settings.sh`, which
|
|
|
|
is run by `bbstartup` to restore the settings at launch.
|
|
|
|
- `bbask [-1] [prompt [initial]]`: Get user input in a standardized and
|
2020-02-24 01:31:39 -08:00
|
|
|
customizable way and output it to `STDOUT`.
|
2020-04-09 00:08:26 -07:00
|
|
|
- `bbcmd <cmd>*`: Modify`bb`'s internal state (see BB Commands).
|
2020-02-24 01:31:39 -08:00
|
|
|
- `bbconfirm [prompt]`: Display a "Is this okay? [y/N]" prompt and exit with
|
|
|
|
failure if the user does not press 'y'.
|
|
|
|
- `bbpause`: Display a "press any key to continue" message and wait for a keypress.
|
|
|
|
- `bbpick [prompt]`: Select one of `NULL`-delimited multiple inputs and print it.
|
|
|
|
- `bbunscroll`: Print text to the screen *above* the cursor instead of below it.
|
2019-09-30 15:46:24 -07:00
|
|
|
|
|
|
|
## Environment Variables
|
2019-09-30 17:06:27 -07:00
|
|
|
|
2020-04-09 00:08:26 -07:00
|
|
|
When `bb` runs scripts, following values are provided as environment variables:
|
2019-09-30 15:46:24 -07:00
|
|
|
|
|
|
|
- `$@` (the list of arguments): the full paths of the selected files
|
2021-01-28 22:17:15 -08:00
|
|
|
- `$BB`: the full path of the file under the cursor
|
2020-02-23 20:22:19 -08:00
|
|
|
- `$BBDEPTH`: the number of `bb` instances deep (in case you want to run a
|
2019-09-30 15:46:24 -07:00
|
|
|
shell and have that shell print something special in the prompt)
|
|
|
|
- `$BBCMD`: a file to which `bb` commands can be written (used internally)
|
2020-02-23 20:22:19 -08:00
|
|
|
- `$BBGLOB`: the glob pattern `bb` is using to determine which files to show
|
2019-09-30 15:46:24 -07:00
|
|
|
|
|
|
|
## BB Internal State Commands
|
2019-09-30 17:06:27 -07:00
|
|
|
|
2019-11-11 12:29:40 -08:00
|
|
|
In order to modify bb's internal state, you can call `bbcmd <cmd>`, where "cmd"
|
2019-09-30 15:46:24 -07:00
|
|
|
is one of the following commands (or a unique prefix of one):
|
|
|
|
|
2020-02-23 20:22:19 -08:00
|
|
|
- `bind:<keys>:<script>` Bind the given key presses to run the given script
|
2019-09-30 15:46:24 -07:00
|
|
|
- `cd:<path>` Navigate to <path>
|
|
|
|
- `columns:<columns>` Change which columns are visible, and in what order
|
2020-02-23 20:22:19 -08:00
|
|
|
- `deselect[:<filename>]` Deselect <filename> (default: all selected files)
|
|
|
|
- `fg[:num]` Send a background process to the foreground (default: most recent process)
|
|
|
|
- `glob:<glob pattern>` The glob pattern for which files to show (default: `*`)
|
2019-09-30 15:46:24 -07:00
|
|
|
- `goto:<filename>` Move the cursor to <filename> (changing directory if needed)
|
2020-02-23 20:22:19 -08:00
|
|
|
- `help` Show the help menu
|
|
|
|
- `interleave[:01]` Whether or not directories should be interleaved with files in the display (default: toggle)
|
2019-09-30 15:46:24 -07:00
|
|
|
- `move:<num*>` Move the cursor a numeric amount
|
2020-02-23 20:22:19 -08:00
|
|
|
- `quit` Quit `bb`
|
2019-09-30 15:46:24 -07:00
|
|
|
- `refresh` Refresh the file listing
|
|
|
|
- `scroll:<num*>` Scroll the view a numeric amount
|
2020-02-23 20:22:19 -08:00
|
|
|
- `select[:<filename>]` Select <filename> (default: all visible files)
|
|
|
|
- `sort:([+-]method)+` Set sorting method (+: normal, -: reverse, default: toggle), additional methods act as tiebreaker
|
2019-09-30 15:46:24 -07:00
|
|
|
- `spread:<num*>` Spread the selection state at the cursor
|
2020-02-23 20:22:19 -08:00
|
|
|
- `toggle[:<filename>]` Toggle the selection status of <filename> (default: all visible files)
|
2019-09-30 15:46:24 -07:00
|
|
|
|
2019-11-11 12:29:40 -08:00
|
|
|
For any of these commands (e.g. `select`), an empty parameter followed by
|
|
|
|
additional arguments (e.g. `bbcmd select: <file1> <file2> ...`) is equivalent to
|
|
|
|
repeating the command with each argument (e.g. `bbcmd select:<file1>
|
|
|
|
select:<file2> ...`).
|
2019-09-30 15:46:24 -07:00
|
|
|
|
|
|
|
Note: for numeric-based commands (like scroll), the number can be either an
|
|
|
|
absolute value or a relative value (starting with `+` or `-`), and/or a percent
|
|
|
|
(ending with `%`). Scrolling and moving, `%` means percent of screen height,
|
|
|
|
and `%n` means percent of number of files (e.g. `+50%` means half a screen
|
|
|
|
height down, and `100%n` means the last file)
|
|
|
|
|
2020-02-23 20:22:19 -08:00
|
|
|
## Globbing
|
|
|
|
|
|
|
|
`bb` uses glob patterns to determine which files are visible. By default, the
|
|
|
|
pattern is `*`, which means all files except those starting with a `.` (dot).
|
|
|
|
`bb`'s globs are POSIX-compliant and do not support bash-style extensions like
|
|
|
|
`**` for recursive matches. `bb` supports multiple, space-separated globs, so
|
|
|
|
for example, you can display all files including dotfiles with the glob: `.* *`
|
|
|
|
(by default, pressing the `.` key will toggle this behavior). The current `bb`
|
|
|
|
glob is available in `$BBGLOB`, which can be used in scripts if left unquoted.
|
|
|
|
|
2019-09-30 17:06:27 -07:00
|
|
|
## Final Notes
|
|
|
|
|
2020-02-24 01:31:39 -08:00
|
|
|
Internally, `bbcmd` writes the commands (`NULL` terminated) to a file whose path is
|
2019-11-11 12:29:40 -08:00
|
|
|
in`$BBCMD` and `bb` reads from that file when it resumes. These commands can also
|
|
|
|
be passed to `bb` at startup as command line arugments starting with `+`, and
|
|
|
|
will run immediately. E.g. `bbcmd +'col:n' +'sort:+r' .` will launch `bb` only
|
|
|
|
showing the name column, randomly sorted.
|
2019-09-30 17:06:27 -07:00
|
|
|
|
2019-11-11 12:29:40 -08:00
|
|
|
`bb` also optimizes any scripts that only contain just a `bbcmd` command and no
|
|
|
|
shell variables, other commands, etc. (e.g. `bbcmd move:+1`) These
|
|
|
|
`bbcmd`-command-only scripts directly modify `bb`'s internal state without
|
2019-09-30 17:06:27 -07:00
|
|
|
spawning a shell, so they're much faster and avoid flickering the screen.
|