-
-
Save adamhub/6afd06b4826d854139e1e7a54f5d0a69 to your computer and use it in GitHub Desktop.
Quick reminders from Terminal (bash/Ubuntu 18.04)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# dontforget | |
# | |
# A script for short term reminders in your terminal. Tested on | |
# Ubuntu 18.04 with ffmpeg installed. | |
# | |
# The number can be anywhere in the arguments, but there shouldn't | |
# be any other numeric digits. | |
# | |
# If the number has h, m, or s immediately after it (no space), it will | |
# be interpreted as hours, minutes, or seconds. The default assumption | |
# is minutes. | |
# | |
# Save the script as `dontforget` in your path and make it executable | |
# | |
# Usage | |
# $ dontforget let the dog back inside 10 | |
# => I'll remind you: "let the dog back inside" in 10 minutes | |
# | |
# It can parse a little extra verbosity around the text, too | |
# $ dontforget to let my dog back in 10m | |
# => I'll remind you: "let your dog back in" in 10 minutes | |
# | |
# $ dontforget I really need to take a break in 1h | |
# I'll remind you: "you really need to take a break" in 60 minutes | |
# | |
# Running dontforget with no arguments will list upcoming reminders | |
# | |
# Use `dontforget cancel` or `dontforget nevermind` to cancel the last | |
# reminder that was created | |
# | |
# $ dontforget cancel | |
# Canceled "you really need to take a break" | |
# | |
# To turn on LaunchBar "large text" display | |
# export DF_LAUNCHBAR=true | |
# | |
# To make dontforget remain in the foreground and cancelable with ^c | |
# export DF_NO_BACKGROUND=true | |
# | |
# Tip: | |
# alias forget="dontforget cancel" | |
[[ -z $DF_LAUNCHBAR ]] && DF_LAUNCHBAR=false || $DF_LAUNCHBAR | |
[[ -z $DF_NO_BACKGROUND ]] && DF_NO_BACKGROUND=false || $DF_NO_BACKGROUND | |
__df() { | |
if [[ $# == 0 ]]; then | |
__df_list_reminders | |
return | |
fi | |
if [[ $# == 1 && $1 =~ (cancel|nevermind) ]]; then | |
__df_cancel | |
return $? | |
fi | |
local instring="$*" | |
local timespan reminder | |
for arg in $@; do | |
if [[ $arg =~ ^[0-9]+[hms]?$ && -z $timespan ]]; then | |
timespan=$(echo "$arg"|sed -E 's/^([0-9]+)([HhSsMm])?$/\1 \2/') | |
else | |
reminder+=" $arg" | |
fi | |
done | |
length=${timespan%% *} | |
unit=${timespan#* } | |
if [[ $unit == "h" ]]; then | |
length=$(($length*60*60)) | |
elif [[ $unit != "s" ]]; then | |
length=$(($length*60)) | |
fi | |
reminder=$(__df_clean_reminder "$reminder") | |
echo "I'll remind you: \"$reminder\" in $(($length/60)) minutes" | |
if [[ $DF_NO_BACKGROUND == true ]]; then | |
sleep $length && __df_remind "$reminder" | |
else | |
sleep $length && __df_remind "$reminder" & | |
fi | |
} | |
__df_list_reminders() { | |
IFS=$'\n'; for line in $(ps ax | grep -E "bash .*?dontforget \w+" | grep -v grep); do echo $(__df_clean_reminder $(echo "$line" | sed -E 's/.*dontforget //')); done | |
} | |
__df_remind() { | |
local reminder="$*" | |
if [[ -n $(ps ax | grep LaunchBar.app) && $DF_LAUNCHBAR == true ]]; then | |
osascript -e "tell application \"LaunchBar\" to display in large type \"Time to $reminder\" with sound \"Glass\"" | |
fi | |
# use instead if on mac | |
#/usr/bin/afplay /System/Library/Sounds/Glass.aiff | |
#say "$reminder" | |
# Ubuntu 18.04, requires ffmpeg | |
ffplay -hide_banner -loop 1000 \ | |
/usr/share/sounds/gnome/default/alerts/bark.ogg 2>&1 | |
# Or if you don't want to install ffmpeg and use wave files | |
# aplay /usr/share/sounds/sound-icons/guitar-13.wav | |
echo "$reminder" | |
} | |
__df_clean_reminder() { | |
local input="$*" | |
# trim whitespace | |
input=$(echo -e "$input" | sed -E 's/(^ *| *$)//g') | tr -s ' ' | |
# change " I " to " you " | |
input=$(echo -e "$input" | sed -E 's/(^| +)[Ii]( +|$)/\1you\2/g') | |
# change " my " to " your " | |
input=$(echo -e "$input" | sed -E 's/(^| +)[Mm]y( +|$)/\1your\2/g') | |
# strip leading "forget" in case you alias to dont, i.e. "dont forget to..." | |
input=$(echo -e "$input" | sed -E 's/^ *forget//') | |
# strip extra words from natural language | |
local output=$(__df_strip_naturals "$input") | |
# final whitespace trim | |
echo -e "$output" | sed -E 's/(^ *| *$)//g' | tr -s ' ' | |
} | |
__df_strip_naturals() { | |
local original=$(echo "$*"|sed -E 's/^( *remind me *)//') | |
while [[ "$original" =~ ^[[:space:]]*(to|in|about) ]]; do | |
original=$(echo "$original"| sed -E 's/^ *(to|in|about) *//g') | |
done | |
if [[ "$original" =~ in[[:space:]]*$ ]]; then original=$(echo "$original"| sed -E 's/ *in *$//'); fi | |
echo $original | sed -E 's/(^ *| *$)//g' | |
} | |
__df_cancel() { | |
local df_job=$(ps ax | grep dontforget | grep -v grep | grep -v cancel | grep -v nevermind | tail -n 1) | |
if [[ -z $df_job || $df_job == "" ]]; then | |
echo "No timer found" | |
return 1 | |
else | |
local pid=$(echo "$df_job" | awk '{print $1}') | |
kill $pid | |
local title=$(echo "$df_job" | sed -E 's/.*dontforget (.*)$/\1/') | |
echo "Canceled \"$(__df_clean_reminder "$title")\"" | |
fi | |
} | |
__df $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment