pueue-add

Add commands to the pueue task queue

TLDR

Add command to queue
$ pueue add [command]
Add with immediate start
$ pueue add -i [command]
Add to specific group
$ pueue add -g [group] [command]
Add with delay
$ pueue add --delay "10min" [command]
Add paused task
$ pueue add --stashed [command]

SYNOPSIS

pueue add [options] command

DESCRIPTION

pueue add adds a new command to the task queue. Commands are queued and executed in order. Supports task grouping, dependencies, priorities, and delayed execution.

PARAMETERS

-i, --immediate

Start immediately.
-g, --group name
Add to group.
--delay duration
Delay before starting.
--stashed
Add as stashed (paused).
-l, --label label
Task label.
-a, --after ids
Start after other tasks.
-p, --priority n
Task priority.

INSTALL

sudo pacman -S pueue
sudo apk add pueue
sudo zypper install pueue
brew install pueue
nix profile install nixpkgs#pueue

SEE ALSO

pueue(1), pueue-status(1)