No description
Find a file
2020-09-13 16:51:14 +01:00
android/Notify androidx 2020-09-13 13:35:06 +01:00
cloud Fix notifications when app is backgrounded 2018-05-12 02:11:54 -07:00
node update stuffs 2020-09-13 13:33:07 +01:00
server make database configurable 2020-09-13 16:45:42 +01:00
sh Update sh script usage message. 2019-02-01 06:57:27 +01:00
.gitignore unix line endings 2016-12-03 11:54:37 -08:00
README.md play store link's warning 2020-07-25 05:50:59 +04:00

notify

Play Store Link (currently unavailable)

Installation

The notify CLI is written with node, so you can install it with npm:

npm install -g notify-cli

Alternatively, you can download & use the shell script equivalent from here, with basic support for adding a single key and sending a notification to it.

You'll also need the app on your phone to actually receive the notifications.

Usage

Using notify is simple. When you download the app to your phone, it will give you a registration key. This key is how your phone is identified by notify. Before you can begin using notify, you should first register your key.

notify -r myKey

After registering, you can use notify as follows:

someLongRunningCommand ; notify

You will receive a push notification to your phone when the command has completed, regardless of whether or not it was successful.

You can also specify what the notification will say, like this:

notify --text "My message"
notify -t "Some cool message"