Skip to content

Commit

Permalink
Merge pull request #19 from Zhbert/add-readme
Browse files Browse the repository at this point in the history
[docs] Add README
  • Loading branch information
Zhbert committed Dec 22, 2023
2 parents b2006b0 + 686e201 commit 21bebd8
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 1 deletion.
66 changes: 65 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,65 @@
# impomoro
<p align="center">
<img src="docs/images/logo.png" max-height="175">
</p>

**impomoro** is a simple cross-platform pomodoro timer written in Go with [fyne](https://fyne.io/) as a GUI framework.

<p align="center">
<img src="docs/images/impomoro.png" style="max-height:100%;" height="175">
</p>

## Why impomoro?

Initially, it was planned to use the [ImGui](https://github.com/ocornut/imgui) framework for the GUI. That's how the name turned out — **Im**Gui + **pomo**do**ro**. Then a different framework was chosen, but the name remained.

## Main features

* Provides two configurable ranges of work and rest timers.
* Displays system notifications at the end of each of the timers.
* Supports the system tray as an experimental feature.

## Installation

Download the package from the [releases](https://github.com/Zhbert/impomoro/releases) section and install it according to your OS.

The utility is built for the following operating systems:
* Linux
* macOS
* FreeBSD
* Windows

## Configuration

The configuration is stored in a YAML configuration file located in the user's home directory in the `.impomoro` directory. For example, in Linux systems it will be `~/home/user/.impomoro`.

The first time you run it, a configuration file with default settings is created in the directory. Also, an icon file is generated next to it, which is used to display system notifications.

### Configuration file

The configuration file is called `config.yml`:
```yaml
# Window settings
display:
width: 400
height: 100
# Period length settings in minutes
time:
longTime: 25
shortTime: 5
# System settings
system:
# Turns on the system tray
enableTray: false
```

### System tray

Turn the `enableTray` parameter of the configuration file to `true` to enable the system tray.

> **Attention!** In some environments, it may work uncorrectly. For example, in Gnome.
When the tray is turned on, the close window button will minimize it to the tray, and not close the application.

## License

MIT License, see [LICENSE](https://github.com/Zhbert/impomoro/blob/main/LICENSE).
Binary file added docs/images/impomoro.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 21bebd8

Please sign in to comment.