aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/.scripts/posture.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/.scripts/posture.sh b/scripts/.scripts/posture.sh
new file mode 100755
index 0000000..0f59da3
--- /dev/null
+++ b/scripts/.scripts/posture.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+MINS=30
+TIME=$(echo "60*$MINS" | bc)
+
+while true; do
+ sleep "$TIME" && notify-send -t 5000 "Postrue" "This is a friendly reminder to change your posture"
+done