citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

remind (178B)


      1 #!/usr/bin/env bash
      2 
      3 usage () {
      4   printf "usage: remind 'reminder' 14:25\n" 1>&2
      5   exit 1
      6 }
      7 
      8 [ -z "$2" ] || [ -z "$1" ] && usage
      9 
     10 echo "notify-send -u critical \"$1\"" | at "$2"