diff options
| -rwxr-xr-x | xalarm | 8 | 
1 files changed, 6 insertions, 2 deletions
@@ -1,6 +1,7 @@  #!/bin/bash  #  # Simple alarm applicaton +# Example run: xalarm 1m mymessage  # See discussion at https://www.reddit.com/r/Gentoo/comments/1rryh1/kalarm_replacement/  # @@ -28,9 +29,12 @@ function xalarm_set {    #echo "xmessage $MESSAGE" | at now +$DELAY    # Sleep implementation -  # Example run: xalarm 1m mymessage    sleep $DELAY -  xmessage $MESSAGE +  if which sm 2> /dev/null; then +    sm $MESSAGE +  else +    xmessage $MESSAGE +  fi  }  # Cancel alarms  | 
