dotfiles/.config/fisherman/await
Breizh 017308719c Mises à jour diverses et nouvelles confs 2021-04-15 21:16:57 +02:00
..
functions Mises à jour diverses et nouvelles confs 2021-04-15 21:16:57 +02:00
LICENSE Mises à jour diverses et nouvelles confs 2021-04-15 21:16:57 +02:00
README.md Mises à jour diverses et nouvelles confs 2021-04-15 21:16:57 +02:00
fishfile Mises à jour diverses et nouvelles confs 2021-04-15 21:16:57 +02:00

README.md

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