Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lionyxml/timec
A stopwatch (count up timer with no limit) for your terminal with labeling support (bash)
https://github.com/lionyxml/timec
Last synced: about 1 month ago
JSON representation
A stopwatch (count up timer with no limit) for your terminal with labeling support (bash)
- Host: GitHub
- URL: https://github.com/lionyxml/timec
- Owner: LionyxML
- License: gpl-2.0
- Created: 2019-04-17T23:05:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-20T02:17:01.000Z (8 months ago)
- Last Synced: 2024-04-20T03:27:30.358Z (8 months ago)
- Language: Shell
- Size: 124 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# timec - Terminal Count-Up Timer
timec is a simple shell script that allows you to create count-up timers directly from your terminal. It provides options to label the timers and run stopwatch functionality for a specified duration.
## Usage
```
./timec [option]
```### Options
- `--label "Text"`: Labels the timer with the specified text.
- `-s `: Runs a stopwatch for the specified number of minutes and notifies upon completion.
- `--help`: Displays the usage information.
- `--version`: Displays the current version of the script.## Examples
### Start the Timer
```
./timec
```### Start a Timer with Label
```
./timec --label "Kitchen Timer"
```### Start a Stopwatch for 5 Minutes
```
./timec -s 5
```### Start a Stopwatch for 5 Minutes with Label
```
./timec -s 5 --label "Exercise"
```
OR
```
./timec --label "Exercise" -s 5
```