16 lines
434 B
Bash
16 lines
434 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
TODAY=$(date +"%B %d") #month day
|
||
|
|
||
|
case $TODAY in
|
||
|
"January 29" | "February 26" | "March 29" | "April 28" | "May 29" | "June 28" | "July 29" | "August 29" | "September 28" | "October 29" | "November 28" | "December 29" )
|
||
|
curl \
|
||
|
-u :ntfy_token_goes_here \
|
||
|
-H "Priority: urgent" \
|
||
|
-H "Tags: money_with_wings" \
|
||
|
-H "Title: Rent Reminder" \
|
||
|
-d "Payment due!" \
|
||
|
https://ntfy_url_goes_here
|
||
|
;;
|
||
|
esac
|