$ cat ~/bin/remindUsage:
#!/bin/bash
msg=$1
shift
( sleep $* && notify-send $msg -t 0 ) &
$ remind "Laundry done" 48mAt the end of time, you will see a popup with the reminder message.
$ remind "Group meeting" 1h 10m
$ cat ~/bin/remindUsage:
#!/bin/bash
msg=$1
shift
( sleep $* && notify-send $msg -t 0 ) &
$ remind "Laundry done" 48mAt the end of time, you will see a popup with the reminder message.
$ remind "Group meeting" 1h 10m
No comments:
Post a Comment