-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from Zhbert/add-readme
[docs] Add README
- Loading branch information
Showing
3 changed files
with
65 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.