aboutsummaryrefslogtreecommitdiff
path: root/xalarm
blob: 2eac2a5bd7b84107cc437ea8fda55236988fa2eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
#
# Simple alarm applicaton
# See discussion at https://www.reddit.com/r/Gentoo/comments/1rryh1/kalarm_replacement/
#

# Delay
DELAY="${1:-10m}"

# Message
shift
MESSAGE="${*:-Alarm!}"

sleep $DELAY
xmessage $MESSAGE