1
0
Fork 0
dotfiles/bin/reminder
2018-08-10 22:48:35 -07:00

10 lines
132 B
Bash
Executable file

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