pueue-enqueue
Move stashed tasks into the pueue queue
TLDR
Enqueue stashed task
$ pueue enqueue [task_id]
Enqueue multiple tasks$ pueue enqueue [id1] [id2] [id3]
Enqueue with delay$ pueue enqueue --delay "[30min]" [task_id]
SYNOPSIS
pueue enqueue [options] taskids_
DESCRIPTION
pueue enqueue moves stashed tasks into the active queue for execution. Tasks that were added with --stashed or moved to stash with pueue stash can be activated with this command. An optional --delay defers execution by a specified duration.
PARAMETERS
TASKIDS_
Task IDs to enqueue.--delay DURATION
Delay before execution.
INSTALL
sudo pacman -S pueue
sudo apk add pueue
sudo zypper install pueue
brew install pueue
nix profile install nixpkgs#pueue
CAVEATS
Tasks must be in the stashed state before they can be enqueued. Use pueue stash to stash running or queued tasks, or add tasks with pueue add --stashed to create them in the stashed state.
SEE ALSO
pueue(1), pueue-stash(1), pueue-add(1), pueue-status(1)