Odonno / pomodoro-code

A pomodoro timer inside your Visual Studio Code IDE
https://marketplace.visualstudio.com/items/odonno.pomodoro-code
9 stars 0 forks source link
pomodoro timer typescript vscode vscode-extension

pomodoro-code

A pomodoro timer inside your Visual Studio Code IDE

pomodoro-code

Commands

There is a list of commands you can use in VS Code :

Status Bar

The status bar contains the current timer of your Pomodoro. It also contains buttons to start or stop Pomodoro.

Alerts

When Work/Pause timer is over, it alerts you by showing you a pop-up.

Configuration file

The configuration file is a simple json object contained in the settings.json of your global config (user settings). By default, if there is no configuration, you can use the extension with a single Pomodoro (25 working minutes and 5 pausing minutes). The settings.json file will provide you a way to change your Pomodoro session as you want, see an example :

// Place your settings in this file to overwrite default and user settings.
{
    "pomodori": [
        {
            "work": 25,
            "pause": 5  
        },
        {
            "work": 25,
            "pause": 5  
        },
        {
            "work": 25,
            "pause": 5  
        },
        {
            "work": 25,
            "pause": 5  
        }
    ]
}

Credits

Thanks José Campos to let me use the Pomodoro icon.