Skip to content

Instantly share code, notes, and snippets.

@txitxo0
txitxo0 / pomodoro
Last active May 20, 2025 07:14 — forked from bashbunni/.zshrc
CLI Pomodoro for Powershell
function Start-Pomodoro {
param(
[ValidateSet("work", "rest")]
[string]$Mode = "work",
[int]$Minutes = $(if ($Mode -eq "work") { 45 } else { 10 }),
[System.Drawing.Color]$startColor = [System.Drawing.Color]::Aqua,
[System.Drawing.Color]$endColor = [System.Drawing.Color]::MintCream
)
$startTime = Get-Date -Format "hh:mm"
$end = (Get-Date).AddMinutes($Minutes)