dotfiles/.config/fisherman/await/README.md

689 B

Slack Room

Await

Wait for background jobs.

Install

With fisherman

fisher await

Usage

Wait until all existing jobs have finished.

await

Wait until the given jobs are finished.

set -l id_list

for cmd in $commands
    fish -c "$cmd" &
    set id_list $id_list (last_job_id -l)
end

await $id_list

Customize spinners.

set await_spinners ◢ ◣ ◤ ◥

Customize interval between spinners.

set await_interval 0.1