change default notification title

This commit is contained in:
mischa 2022-07-19 11:47:28 +02:00
parent f23088df92
commit 6be47f6536
2 changed files with 8 additions and 1 deletions

View File

@ -2,3 +2,10 @@
Simple Perl script to send notifications via [Pushover](https://pushover.net)
$ ./pushover.pl
Usage: ./pushover.pl [-m message] [-t title] [-p priority]
Options:
-m | --message text
-t | --title text (default: Notification)
-p | --priority [0|1] (default: 0)

View File

@ -25,7 +25,7 @@ use JSON::PP;
GetOptions(
"message=s" => \(my $MESSAGE),
"title=s" => \(my $TITLE = "OpenBSD Amsterdam"),
"title=s" => \(my $TITLE = "Notification"),
"priority=i" => \(my $PRIORITY = 0),
);