i3status-rust
i3status-rust copied to clipboard
Very resourcefriendly and feature-rich replacement for i3status, written in pure Rust
Hello all, great project! I'm in the process of porting my status from i3pystatus and having a wonderful time, but hit a small formatting roadblock that I wanted to get...
For my case: I prefer not to show minutes or seconds but I want to see only hours. I usually run my computer more than an hours, and this uptime...
Currently we only support clear, rain, clouds, thunderstorm and snow: https://github.com/greshake/i3status-rust/blob/d39cd39977bd056d13e165ee52c010ffb5c779ad/src/blocks/weather.rs#L258-L265 https://github.com/greshake/i3status-rust/blob/d39cd39977bd056d13e165ee52c010ffb5c779ad/src/icons.rs#L148-L153 We are grabbing the weather state from the JSON `weather.main` field which has a limited set of states....
Is possible to change color of net block when interface status is up? How I can do that? Thanks in advance Giorgio
How to reproduce: run i3status-rust with the following config and then run `pulseaudio -k`. ```toml [[block]] block = "sound" ``` Pulseaudio is restarted (since it a normal behavior for a...
- Before: `data did not match any variant of untagged enum ColorOrLink`. - After: `'not a color' is not a valid RGBA color. Cause: invalid digit found in string`.
Adds support to retrieve simple color definitions from `~/.Xresources` with a new prefix in the color definitions in theme overrides, e.g., ``` [theme.overrides] idle-bg = "x:background" ``` would look for...
Hello! When migrating from waybar to swaybar with i3status-rust, I've noticed a small issue with sound block. Even though `headphones_indicator` is set to `true` icon does not change. I tried...
It is not necessary at the moment, but may cause issues is the future.
Closes #1957 ## Example Show the cpu block only if utilization is above 10%: ```toml [[block]] block = "cpu" format = " $icon $utilization.eng(range:10..) |" ``` ## Unresolved Questions Support...