https://github.com/maxlorenz/ps-pomodoro
Simple Pomodoro in PowerShell
https://github.com/maxlorenz/ps-pomodoro
Last synced: 11 months ago
JSON representation
Simple Pomodoro in PowerShell
- Host: GitHub
- URL: https://github.com/maxlorenz/ps-pomodoro
- Owner: maxlorenz
- License: mit
- Created: 2016-09-27T11:13:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-27T13:13:55.000Z (over 9 years ago)
- Last Synced: 2025-07-29T02:03:10.965Z (11 months ago)
- Language: PowerShell
- Size: 20.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ps-pomodoro
Simple Pomodoro in PowerShell
### During execution:

### Notification:

## Usage
Simply use
```powershell
Start-Pomodoro
```
to start a timer for 25 minutes, or
```powershell
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.
```powershell
MyEditor $PROFILE
```
```powershell
# 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
```powershell
pm
```