aboutsummaryrefslogtreecommitdiff
path: root/.scripts/timer
diff options
context:
space:
mode:
Diffstat (limited to '.scripts/timer')
-rwxr-xr-x.scripts/timer6
1 files changed, 6 insertions, 0 deletions
diff --git a/.scripts/timer b/.scripts/timer
new file mode 100755
index 0000000..9ce6ba5
--- /dev/null
+++ b/.scripts/timer
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+time=$(printf "\\n" | dmenu -p "How many minutes?")
+echo "sleeping for ${time}min"
+sleep $((time * 60))
+notify-send "Timer" "${time}min are up!"