mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-15 17:47:13 +00:00
8c71eb5307
Often it is handy to get notified when the execution of a command finished. This commit includes notify-rust in order to generate a desktop notification when a command execution finished.
29 lines
754 B
Rust
29 lines
754 B
Rust
use crate::config::{ModuleConfig, RootModuleConfig};
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
pub struct CmdDurationConfig<'a> {
|
|
pub min_time: i64,
|
|
pub format: &'a str,
|
|
pub style: &'a str,
|
|
pub show_milliseconds: bool,
|
|
pub disabled: bool,
|
|
pub show_notifications: bool,
|
|
pub min_time_to_notify: i64,
|
|
}
|
|
|
|
impl<'a> RootModuleConfig<'a> for CmdDurationConfig<'a> {
|
|
fn new() -> Self {
|
|
CmdDurationConfig {
|
|
min_time: 2_000,
|
|
format: "took [$duration]($style) ",
|
|
show_milliseconds: false,
|
|
style: "yellow bold",
|
|
disabled: false,
|
|
show_notifications: false,
|
|
min_time_to_notify: 45_000,
|
|
}
|
|
}
|
|
}
|