about summary refs log tree commit diff stats
path: root/lua/pomo.lua
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2022-10-07 23:57:59 +0000
committerelioat <elioat@tilde.institute>2022-10-07 23:57:59 +0000
commitf7dc77b3763ac444fa54e110639fadc6ba70174b (patch)
tree104c0fca807f88fff3564dfb696f1761d0426b5b /lua/pomo.lua
parent1a6af4c104ea9d168f947ce082d0f6336f8ea036 (diff)
downloadtour-f7dc77b3763ac444fa54e110639fadc6ba70174b.tar.gz
*
Diffstat (limited to 'lua/pomo.lua')
-rw-r--r--lua/pomo.lua71
1 files changed, 71 insertions, 0 deletions
diff --git a/lua/pomo.lua b/lua/pomo.lua
new file mode 100644
index 0000000..75e4c1e
--- /dev/null
+++ b/lua/pomo.lua
@@ -0,0 +1,71 @@
+-- title:  pomo
+-- author: eli_oat
+-- about:  a very tiny pomodoro timer
+
+local pomo = {
+    _version = "2022.03"
+}
+
+local defaults = {
+    pomoTime = 1500,    -- time for a pomodoro in seconds
+    restTime = 600,     -- time for a short rest in seconds
+    longRestTime = 900, -- time for a long rest in sseconds
+    pomoCount = 0       -- used to count pomodoros before a long rest
+}
+
+local pomoTime = defaults.pomoTime
+local restTime = defaults.restTime
+local longRestTime = defaults.longRestTime
+local pomoCount = defaults.pomoCount
+
+local function sleep (a)
+    local sec = tonumber(os.clock() + a)
+    while (os.clock() < sec) do
+    end
+end
+
+local function prettyTime (timeInSeconds)
+    local minutes = math.floor(timeInSeconds / 60)
+    local seconds = timeInSeconds % 60
+    local timeDisplay = string.format('%02d:%02d', minutes, seconds)
+    return timeDisplay
+end
+
+function pomo ()
+    os.execute('clear')
+    repeat
+        io.write('🍅 ' .. prettyTime(pomoTime) .. '\n')
+        pomoTime = pomoTime - 1
+        sleep(1)
+        os.execute('clear')
+    until pomoTime == 0
+
+    while pomoTime == 0 and pomoCount < 4 do
+        io.write('😴 ' .. prettyTime(restTime) .. '\n')
+        restTime = restTime - 1
+        sleep(1)
+        os.execute('clear')
+        while restTime == 0 do
+            restTime = defaults.restTime
+            pomoTime = defaults.pomoTime
+            pomoCount = pomoCount + 1
+            pomo()
+        end
+    end
+
+    while pomoCount == 4 do
+        io.write('🍹 LONG REST! ' .. prettyTime(longRestTime) .. '\n')
+        longRestTime = longRestTime - 1
+        sleep(1)
+        os.execute('clear')
+        while longRestTime == 0 do
+            restTime = defaults.restTime
+            pomoTime = defaults.pomoTime
+            longRestTime = defaults.longRestTime
+            pomoCount = defaults.pomoCount
+            pomo()
+        end
+    end
+end
+
+return pomo
'n218' href='#n218'>218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320