Skip to content

Instantly share code, notes, and snippets.

View Virako's full-sized avatar

Victor Ramirez de la Corte Virako

View GitHub Profile
@Virako
Virako / pomodoro.lua
Last active January 10, 2017 18:56 — forked from nistude/pomodoro.lua
Add increment/decrement time with mouse wheel.
-- pomodoro timer widget
pomodoro = {}
-- tweak these values in seconds to your liking
pomodoro.pause_duration = 300
pomodoro.work_duration = 1200
pomodoro.pause_title = "Pause finished."
pomodoro.pause_text = "Get back to work!"
pomodoro.work_title = "Pomodoro finished."
pomodoro.work_text = "Time for a pause!"