aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2023-10-21 01:04:41 +0300
committeromagdy7 <omar.professional8777@gmail.com>2023-10-21 01:04:41 +0300
commit4bfdafe13399e66d6fdb487873630c3678a3a28c (patch)
tree88de450595464b74e2f24a44ec414097c61d1697 /scripts
parent06d9a9e4e6f5db1f3fbed5ab46ac991351819fbd (diff)
downloaddotfiles-4bfdafe13399e66d6fdb487873630c3678a3a28c.tar.xz
dotfiles-4bfdafe13399e66d6fdb487873630c3678a3a28c.zip
Migrated to lazyvim
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