10 lines
135 B
Bash
Executable file
10 lines
135 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
timespec="$1"
|
|
message="$2"
|
|
|
|
cmd="notify-send '${message}'"
|
|
echo "$cmd" | at -M "$timespec"
|
|
atq
|