LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

noti

triggers notifications when commands complete

TLDR

Notify when command completes
$ noti [long-running-command]
copy
Notify with custom title
$ noti -t "[Build]" [make]
copy
Notify with custom message
$ noti -m "[Done!]" [command]
copy
Use specific service
$ noti --slack [command]
copy
Pipe mode
$ [command] | noti
copy
Banner notification
$ noti -b [command]
copy
Watch a running process by PID
$ noti -w [PID]
copy

SYNOPSIS

noti [options] [command]

DESCRIPTION

noti triggers notifications when commands complete. Supports multiple services.The tool alerts on completion. Works with Slack, Pushover, and native notifications.

PARAMETERS

COMMAND

Command to monitor.
-t TITLE
Notification title.
-m MESSAGE
Notification message.
-b
Banner notification.
-s
Speech notification (text-to-speech).
-w PID
Watch a running process by PID and notify when it finishes.
--slack
Notify via Slack.
--pushover
Notify via Pushover.
--help
Display help information.

CAVEATS

Requires notification service. Cross-platform. Configuration for external services.

HISTORY

noti was created to provide command completion notifications across multiple platforms and services.

SEE ALSO

Copied to clipboard
Kai