Crates.io | event-countdown |
lib.rs | event-countdown |
version | 1.0.4 |
source | src |
created_at | 2021-05-16 14:33:37.313667 |
updated_at | 2021-05-16 14:33:37.313667 |
description | Countdown to events you're looking forward to. |
homepage | https://github.com/leethomas/countdown |
repository | https://github.com/leethomas/countdown |
max_upload_size | |
id | 398197 |
size | 23,377 |
Countdown is a command line program that tells you how many days are remaining until any number of events that you've configured. Use it in your shell's $PS1 to always have the soonest event displayed, or just use it on the fly whenever you need some encouragement for the week.
USAGE:
countdown [OPTIONS]
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-n, --n <n> Max number of events to display.
-o, --order <order> Specify the ordering of the events returned [possible values: shuffle, time-asc, time-desc]
Install with cargo install event-countdown
Before running, create a .countdown.toml
file in your home directory containing a list of events you'd like to track. Here's an example with dates far into the future (as of 2021 😄):
[[events]]
name = "summer break"
time = 1892160000 # these are unix timestamps in seconds
[[events]]
name = "wwdc"
time = 1892250000
[[events]]
name = "memorial day weekend"
time = 1892170000
countdown
in your shell and you're all set 🎉