1
0
Fork 0

Reminder script

This commit is contained in:
Jeremy Kaplan 2018-08-10 22:48:09 -07:00 committed by Jeremy Kaplan
commit c13ce3d4b6

10
bin/reminder Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -euo pipefail
timespec="$1"
message="$2"
cmd="notify-send '$1' '$2'"
echo "$cmd" | at -M "$timespec"
atq