Skip to content

Instantly share code, notes, and snippets.

View OpenSourceLasagna's full-sized avatar

OpenSourceLasagna

  • Vienna
  • 09:39 (UTC +02:00)
View GitHub Profile
@OpenSourceLasagna
OpenSourceLasagna / .zshrc
Last active June 8, 2025 13:30
CLI Pomodoro
# adjusted from https://gist.github.com/bashbunni/3880e4194e3f800c4c494de286ebc1d7
pomodoro() {
typeset -A pomo_options
pomo_options["work"]=${1:-25}
pomo_options["break"]=${2:-5}
pomo_options["long_break"]=${3:-15}
local current_phase="work"