summaryrefslogtreecommitdiff
path: root/bin/extra
diff options
context:
space:
mode:
authorRaymaekers Luca <raymaekers.luca@gmail.com>2023-10-16 12:07:51 +0200
committerRaymaekers Luca <raymaekers.luca@gmail.com>2023-10-16 12:07:51 +0200
commit791fe7d02cd117f12c5f1473f408ea67c5f2338e (patch)
treeb329f19691051462ed8cb9c0e77d2b91ff74fecd /bin/extra
parentab321c0ce1a90fd0d690db6ef94bc170167795a9 (diff)
removed pomo
Diffstat (limited to 'bin/extra')
-rwxr-xr-xbin/extra/pomo31
1 files changed, 0 insertions, 31 deletions
diff --git a/bin/extra/pomo b/bin/extra/pomo
deleted file mode 100755
index a2c371d..0000000
--- a/bin/extra/pomo
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-notif() { notify-send -t 1000 -w "pomo" "$1"; }
-
-for msg in "three" "two" "one"
-do notif "$msg"
-done
-
-# $1: time in minutes
-# $2: msg for notification
-ring_ring()
-{
- date '+%R B'
- notify-send -w "$(($1*1000*60))" -u critical "pomo" "$2"
-}
-
-i="${1-0}"
-while true
-
-do
- notif "<b>START</b>"
- date '+%R S'
- sleep 20m
- if [ "$i" -eq 3 ]
- then
- i=0
- ring_ring 20 "GIGA BREAK TIME"
- else
- ring_ring 5 "BREAK TIME"
- i=$((i+1))
- fi
-done