Commit Diff


commit - f23088df92d7c793283c9b437373cc0725d78254
commit + 6be47f65362ce3b2302f25bea98de7efbc25f12b
blob - cee8565078a7f28666fadc9a168615a3b16f17b7
blob + be83ae4015dfd2fcb68162ad9c19bf5d1d15bd3b
--- README.md
+++ README.md
@@ -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)
+
blob - 907662642a517733b161d29177c072b06b8ec3ce
blob + 805e8cb097091f3003e77bfa4971c865144ce78d
--- pushover.pl
+++ pushover.pl
@@ -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),
 );