use structopt::StructOpt;
#[derive(Debug, StructOpt)]
#[structopt(
name = "Analog Clock",
about = "
Key bindings:
'q' : quit
'-' : decrease clock width
'='/'+' : increase clock width
For more info, please refer https://github.com/wongjiahau/analog-clock
"
)]
pub struct CliOptions {
#[structopt(long, default_value = "nord-frost")]
pub theme: String,
#[structopt(long, default_value = "1000")]
pub tick: usize,
#[structopt(long)]
pub hide_second_hand: bool,
#[structopt(long)]
pub hide_hour_labels: bool,
#[structopt(long)]
pub show_minute_labels: bool,
}