Skip to content

bruhtus/simo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simo

Simo is a simple pomodoro timer CLI that can be used in status bar, such as i3status.

Installation

To install the this CLI, we can do:

go install github.com/bruhtus/simo@latest

Or if we want to use specific version, we can do:

go install github.com/bruhtus/[email protected]

Or if we want to use specific commit, let's say we want to install version on commit 550ac4e, we can do:

go install github.com/bruhtus/simo@550ac4e

If using go install does not work or we want to change the source code, we can clone the repo and use go build like this:

git clone https://github.com/bruhtus/simo.git
cd simo
go build

Usage

The available subcommands are:

  • status: to show the current time of on going session.
  • focus: to start the focus session of pomodoro.
  • break: to start the break session of pomodoro.
  • pause: to toggle pause or unpause the on going session.
  • reset: to reset or stop the on going session.

The default focus session time is 50 minutes and break session is 10 minutes. We can change the focus or break session time using flag -t like this:

simo focus -t 25m
simo break -t 5m

For notification, simo using notify-send. If you want to use other notification command, you need to change the source code and build it again.

To enable notification, we need to provide flag -n in the CLI like this:

simo focus -t 25m -n
simo break -t 5m -n

References

About

Simple pomodoro timer CLI.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages