https://github.com/niko-dunixi/check-payday
Command line utility to check if it's payday
https://github.com/niko-dunixi/check-payday
cli finance payday rust
Last synced: 3 months ago
JSON representation
Command line utility to check if it's payday
- Host: GitHub
- URL: https://github.com/niko-dunixi/check-payday
- Owner: niko-dunixi
- License: mit
- Created: 2018-03-15T19:43:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-02-11T06:48:40.000Z (over 5 years ago)
- Last Synced: 2025-01-30T08:43:30.174Z (5 months ago)
- Topics: cli, finance, payday, rust
- Language: Rust
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# check-payday
### Synopsis
Written in Rust! `check-payday` is a really simple and easy to use terminal application that tells
me if it's payday or not. Running `check-payday` will print out how many days until payday. Executing
in `--interactive` mode (or with the `-i` flag) will print out a progress bar that fills in as the
seconds count down towards the next payday!### Installation
Dead simple because it's cargo. Install by running:
```bash
cargo install --git https://github.com/paul-nelson-baker/check-payday
```### Usage
`$ check-payday --help`
```
check-payday 0.2
Paul Freakn Baker
Prints out how many days until we get paid. Exit code will matchUSAGE:
check-payday [FLAGS] [OPTIONS]FLAGS:
-h, --help Prints help information
-i, --interactive indicates whether or not to show the payday progress bar
-V, --version Prints version informationOPTIONS:
-d, --base-date the date that calculations will be based off of. Format must be given in: %Y-%m-%d
[default: 2018-01-05]
```