generated from PlexSheep/rs-base
feat: allow input of duration in seconds and minutes too
cargo devel CI / cargo CI (push) Has been cancelled
Details
cargo devel CI / cargo CI (push) Has been cancelled
Details
This commit is contained in:
parent
128cc3621e
commit
99b81be0ab
|
@ -20,6 +20,7 @@ desktop = ["dep:notify-rust"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.86"
|
anyhow = "1.0.86"
|
||||||
chrono = "0.4.38"
|
chrono = "0.4.38"
|
||||||
|
humantime = "2.1.0"
|
||||||
libpt = { version = "0.6.0", features = ["cli"] }
|
libpt = { version = "0.6.0", features = ["cli"] }
|
||||||
notify-rust = { version = "4.11.0", optional = true }
|
notify-rust = { version = "4.11.0", optional = true }
|
||||||
ratatui = "0.27.0"
|
ratatui = "0.27.0"
|
||||||
|
|
59
src/clock.rs
59
src/clock.rs
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
use chrono::{DateTime, Local, SubsecRound, Timelike};
|
use chrono::{DateTime, Local, SubsecRound, Timelike};
|
||||||
use clap::Parser;
|
use clap::Parser;
|
||||||
|
use humantime;
|
||||||
use libpt::cli::args::HELP_TEMPLATE;
|
use libpt::cli::args::HELP_TEMPLATE;
|
||||||
use libpt::cli::clap::ArgGroup;
|
use libpt::cli::clap::ArgGroup;
|
||||||
use libpt::cli::{args::VerbosityLevel, clap};
|
use libpt::cli::{args::VerbosityLevel, clap};
|
||||||
|
@ -47,7 +48,7 @@ impl Default for TimeBarLength {
|
||||||
/// Make your terminal into a big clock
|
/// Make your terminal into a big clock
|
||||||
#[derive(Parser, Debug, Clone)]
|
#[derive(Parser, Debug, Clone)]
|
||||||
#[command(help_template = HELP_TEMPLATE, author, version)]
|
#[command(help_template = HELP_TEMPLATE, author, version)]
|
||||||
#[clap(group( ArgGroup::new("timebarlen") .args(&["minute","day", "hour", "custom", "count_up"]),))]
|
#[clap(group( ArgGroup::new("timebarlen") .args(&["minute","day", "hour", "custom", "countdown"]),))]
|
||||||
#[allow(clippy::struct_excessive_bools)] // the struct is for cli parsing and we already use an
|
#[allow(clippy::struct_excessive_bools)] // the struct is for cli parsing and we already use an
|
||||||
// ArgGroup
|
// ArgGroup
|
||||||
pub struct Clock {
|
pub struct Clock {
|
||||||
|
@ -58,16 +59,23 @@ pub struct Clock {
|
||||||
pub timer: bool,
|
pub timer: bool,
|
||||||
|
|
||||||
// timebar options
|
// timebar options
|
||||||
|
/// show a time bar that tracks progress of the minute
|
||||||
#[clap(short, long)]
|
#[clap(short, long)]
|
||||||
pub minute: bool,
|
pub minute: bool,
|
||||||
|
/// show a time bar that tracks progress of the day
|
||||||
#[clap(short, long)]
|
#[clap(short, long)]
|
||||||
pub day: bool,
|
pub day: bool,
|
||||||
|
/// show a time bar that tracks progress of the hour
|
||||||
#[clap(short = 'o', long)]
|
#[clap(short = 'o', long)]
|
||||||
pub hour: bool,
|
pub hour: bool,
|
||||||
#[clap(short, long)]
|
/// show a time bar that tracks progress of a custom duration
|
||||||
pub custom: Option<i64>,
|
#[clap(short, long, value_parser = humantime::parse_duration)]
|
||||||
#[clap(short = 'u', long)]
|
pub custom: Option<std::time::Duration>,
|
||||||
pub count_up: Option<i64>,
|
/// show a time bar that tracks progress of a custom duration without resetting
|
||||||
|
#[clap(short = 'u', long, value_parser = humantime::parse_duration)]
|
||||||
|
pub countdown: Option<std::time::Duration>,
|
||||||
|
|
||||||
|
// internal variables
|
||||||
#[clap(skip)]
|
#[clap(skip)]
|
||||||
pub(crate) last_reset: Option<DateTime<Local>>,
|
pub(crate) last_reset: Option<DateTime<Local>>,
|
||||||
#[clap(skip)]
|
#[clap(skip)]
|
||||||
|
@ -134,11 +142,14 @@ impl Clock {
|
||||||
Some(TimeBarLength::Day)
|
Some(TimeBarLength::Day)
|
||||||
} else if self.hour {
|
} else if self.hour {
|
||||||
Some(TimeBarLength::Hour)
|
Some(TimeBarLength::Hour)
|
||||||
} else if self.count_up.is_some() {
|
} else if self.countdown.is_some() {
|
||||||
self.count_up.map(TimeBarLength::Countup)
|
Some(TimeBarLength::Countup(
|
||||||
|
self.countdown.unwrap().as_secs() as i64
|
||||||
|
))
|
||||||
} else {
|
} else {
|
||||||
// this feels weird but is the same
|
Some(TimeBarLength::Custom(
|
||||||
self.custom.map(TimeBarLength::Custom)
|
self.countdown.unwrap().as_secs() as i64
|
||||||
|
))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -334,12 +345,38 @@ impl Clock {
|
||||||
#[cfg(feature = "desktop")]
|
#[cfg(feature = "desktop")]
|
||||||
{
|
{
|
||||||
let mut notify = notify_rust::Notification::new();
|
let mut notify = notify_rust::Notification::new();
|
||||||
|
|
||||||
notify.appname(env!("CARGO_BIN_NAME"));
|
notify.appname(env!("CARGO_BIN_NAME"));
|
||||||
|
|
||||||
|
// see [FreeDesktop Sound Naming Specification](http://0pointer.de/public/sound-naming-spec.html)
|
||||||
|
// a sound exists for our use-case
|
||||||
|
//
|
||||||
|
// NOTE: sadly, notify_rust does not (yet) support KDE plasma, because
|
||||||
|
// they have a weird way of making sounds and notifications in general
|
||||||
|
// work. At least we get a little notification.
|
||||||
|
//
|
||||||
|
// TODO: add something to make a sound without the notification system,
|
||||||
|
// as that is not reliable but the user might depend on it.
|
||||||
|
notify.sound_name("alarm-clock-elapsed");
|
||||||
|
|
||||||
|
// The user sets the time with the expectation to be notified, but it's
|
||||||
|
// not like the moon is crashing into the earth
|
||||||
|
notify.urgency(notify_rust::Urgency::Normal);
|
||||||
|
|
||||||
|
// The user wants to be notified, otherwise he wouldn't set this
|
||||||
|
// option. The notification should stay, until the user makes it go
|
||||||
|
// away. This is useful when the user leaves their workstation, comes
|
||||||
|
// back some time later, and the duration has been reached during the
|
||||||
|
// time he was away.
|
||||||
|
notify.timeout(notify_rust::Timeout::Never);
|
||||||
|
|
||||||
notify.summary(&format!(
|
notify.summary(&format!(
|
||||||
"Your countdown of {} is up.",
|
"Your countdown of {} is up.",
|
||||||
self.count_up.unwrap()
|
humantime::Duration::from(self.countdown.unwrap())
|
||||||
));
|
));
|
||||||
// FIXME: does not appear to be working on my WSL2
|
// NOTE: this will only work on machines with a proper desktop, not
|
||||||
|
// with things like WSL2 or a docker container. Therefore, it is behind
|
||||||
|
// the desktop feature.
|
||||||
let _ = notify.show().inspect_err(|e| {
|
let _ = notify.show().inspect_err(|e| {
|
||||||
error!("could not notify of finished countup: {e}");
|
error!("could not notify of finished countup: {e}");
|
||||||
debug!(": {e:#?}");
|
debug!(": {e:#?}");
|
||||||
|
|
Reference in New Issue