David Kleingeld

Results 378 comments of David Kleingeld

Must be a bug in either Pop-os/pipewire or rwaybar then. Ill sprinkle some `dbg!` expressions through `pulse.rs` and report back I could also write up a PR adding runtime configurable...

> FYI: `RUST_LOG=debug rwaybar` already exists, though the documentation of this might need adding. Thanks! I don't know how I missed that! Regarding documentation maybe an issue template here on...

I was able to investigate this a little, adding some logging to: https://github.com/danieldg/rwaybar/blob/1094cb6bee68ce8f58e2d0a90f8367443edaf2c7/src/pulse.rs#L534 Specifically: ``` dbg!(port.volume).avg(); dbg!(port.volume.avg()); let volume = Volume(5000u32); trace!("volume string: {}", volume.print().trim()); ``` I hard coded the...

Just pitching in, would a deny-list regex work? You could then specify a regex and if it matches an entry is hidden. That would be easier then listing all your...

I think most TUI's would provide their own UI for setting the options expressed in the MML. How would they interface? Maybe builder pattern initialized struct that devs could hook...

(I do not use the docker build) The `GLIBC` version used by the docker container to build the executable could be different then the one of the system or docker...

> I still dont know if its my system that have the 2.31 version or its the docker environment or rust or what. In this case (microbins docker file) there...

Normally it is enough to install the musl target (`rustup target add x86_64-unknown-linux-musl`) and tell cargo to use it: `cargo build --release --target x86_64-unknown-linux-musl`. Microbin however has a few C...

Related news: https://blog.rust-lang.org/2022/08/01/Increasing-glibc-kernel-requirements.html [not a cause of this issue, however I am putting it out here as it could be cause in the future if someone tries to run microbin...

small update rmapi might also use the XDG config dir. Then the path to the config is ~/.config/rmapi/rmapi.conf