Cpt.Howdy
Cpt.Howdy
[Geany](https://geany.org) is an amazing IDE that is cross-platform, fast, feature-rich, and surprisingly very small (12mb for me last time I checked). I was quite shocked when I looked through this...
As the title states, I want to personally rewrite the program from scratch. To be honest, I've been unhappy with the codebase for a long time for various reasons. And...
…d on linux. Still working on some issues with cpu.rs, therefore cpu things are currently commented out. This is currently a draft PR to track my progress, please do not...
Package counts only work on Arch as it uses pacman, I want to expand it to work with other distros. Shouldn't be too hard to add, just need to know...
Thanks to TomasGutierrez0 for pointing this out. With [conditional compilation](https://doc.rust-lang.org/reference/conditional-compilation.html), we could set it up so that BSD-specific code is only compiled in on *BSD.
The package count is wrong because how the packages were counted were changed. Before, I had 2 lines cut out from the output before counting because `pip` adds 2 lines...
I have figured out how to list packages purely through Rust, without the need of an external dep. However, I'm having trouble figuring out how to implement it. By using...
Currently, the music info uses predefined formatting and options: `mpc -f "%artist - (%date%) %album% - %title%"` However, this command *will not work*, if the user isn't using the default...
Should be fairly easy to implement, as you can pull CPU the temp from: `/sys/class/thermal/thermal_zone0/temp` Note: The temp needs to be divided by 1000 to get it into human readable...
Print the full path to the `$SHELL`, as well as include the version. Example: ``` OTHER INFO SHELL /usr/bin/bash 5.0.3(1)-release OTHER INFO ``` I've always much preferred viewing the absolute...