mirror of
https://github.com/rwxrob/dot
synced 2024-11-18 15:25:52 +00:00
10 lines
228 B
Bash
Executable File
10 lines
228 B
Bash
Executable File
#!/usr/bin/env bash
|
|
what="$*"
|
|
if [[ -z "${what}" ]]; then
|
|
what="in a bit"
|
|
elif [[ $what =~ ^([0-9]+) ]]; then
|
|
what="at $(date -d "${BASH_REMATCH[1]} minutes" +%-I:%M)"
|
|
fi
|
|
echo "$what" > ~/.break
|
|
exec bannerfish "back $what"
|