A command-line tool to send a message to devices via Pushbullet.
The command arcus
requires the access token to call Pushbullet API.
Set the access token to the environment variable ARCUS_ACCESS_TOKEN
:
export ARCUS_ACCESS_TOKEN=<your access token>
Send a message to your devices via Pushbullet with the following command:
$ arcus send -t <title> -m <message>
You can send a link or a file with the message:
$ arcus send -t <title> -m <message> -l <url or path>
If you want to notify the specific device, use -d
option with its nickname:
$ arcus send -d <nickname> -t <title> -m <message>
The registered devices can be listed with arcus list
.
If you are an OSX user, you can install arcus
with Homebrew:
brew tap mitsuse/bullet
brew install bullet-cmd
For other platform, the executable binaries are downloadable from the release page.
In the case of building from the sources, try the following:
$ go get -u github.com/mitsuse/arcus
Please read LICENSE.txt.