/ps-pomodoro

Simple Pomodoro in PowerShell

Primary LanguagePowerShellMIT LicenseMIT

ps-pomodoro

Simple Pomodoro in PowerShell

During execution:

Running script

Notification:

Notification

Usage

Simply use

Start-Pomodoro

to start a timer for 25 minutes, or

Start-Pomodoro -Minutes 5

to specify the time.

Integrate into $PROFILE

For convenience, add the pm.ps1 content to your $PROFILE and add an alias.

MyEditor $PROFILE
# Microsoft.PowerShell_profile.ps1
Function Show-Notification
{
    ...
}

Function Start-Pomodoro
{
    ...
}

New-Alias -Name pm -Value Start-Pomodoro

From now on, you can start your pomodoros with

pm