Bryan Malyn
Bryan Malyn
See notes here: #1712
I can't get the `` to show up, but if you still see this problem you could test replacing the `` with `\u{200b}` (a zero width space)
On 419, can you try a different backlight tool: `calibright_cli`?
``` $ cargo install calibright_cli $ calibright_cli --help A brightness utility that allows you to calibrate brightness between monitors Usage: calibright_cli [OPTIONS] Options: --device Regular expression for the devices to...
> For me I'd like the if_command to be rerun at an interval because I could then use it to conditionally display the disk space block only when below a...
Looks like there's 2 small formatting issues (missing `,`s) ```diff Diff in /home/runner/work/i3status-rust/i3status-rust/src/blocks/timewarrior.rs at line 141: annotation: item.annotation, start: chrono::TimeZone::from_utc_datetime( &chrono::Utc, - &chrono::NaiveDateTime::parse_from_str(&item.start, "%Y%m%dT%H%M%SZ").unwrap() + &chrono::NaiveDateTime::parse_from_str(&item.start, "%Y%m%dT%H%M%SZ").unwrap(), ), end: item.end.map(|v|...
You can avoid having to use the `TimewarriorRAW` intermediate stucture like this: ```diff diff --git a/src/blocks/timewarrior.rs b/src/blocks/timewarrior.rs index 26d4a67c..a232e1fd 100644 --- a/src/blocks/timewarrior.rs +++ b/src/blocks/timewarrior.rs @@ -35,7 +35,10 @@ //! -...
Any maybe this is a stupid question, but as someone who's never used taskwarrior can you have multiple tasks at the same time?
Here's a version without using the RAW intermediate stuct: ```diff diff --git a/src/blocks/timewarrior.rs b/src/blocks/timewarrior.rs index 26d4a67c..2da0f92b 100644 --- a/src/blocks/timewarrior.rs +++ b/src/blocks/timewarrior.rs @@ -35,7 +35,9 @@ //! - `tasks` use super::prelude::*;...
With #2032 we won't need to expose two values for the current pomodoro number.