https://github.com/nanda-gopal-sb/comodoro
A fun pomodoro timer written in C
https://github.com/nanda-gopal-sb/comodoro
c pomo
Last synced: 3 months ago
JSON representation
A fun pomodoro timer written in C
- Host: GitHub
- URL: https://github.com/nanda-gopal-sb/comodoro
- Owner: nanda-gopal-sb
- Created: 2024-12-05T05:50:54.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-12-29T08:17:46.000Z (6 months ago)
- Last Synced: 2025-02-02T03:18:33.034Z (5 months ago)
- Topics: c, pomo
- Language: C
- Homepage:
- Size: 174 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pomodoro Timer
This is a simple Pomodoro timer written in C++. It helps you manage your time by breaking work into intervals, traditionally 25 minutes in length, separated by short breaks.
## Dependencies
To use the program, I needed a way to print text to the screen so I used figlet.
And for playing audio from the terminal I used mpv.### Debian-based
```sh
sudo apt-get install figlet mpv
```### Arch-based
```sh
sudo pacman -S figlet mpv
```### Fedora
```sh
sudo dnf install figlet mpv
```## Usage
```sh
git clone https://github.com/nanda-gopal-sb/comodoro
cd comodoro
gcc src/main.c # you could also use clang
./a.out
```