From 2983e0078624dd1f6e843a66a1a78affcca37389 Mon Sep 17 00:00:00 2001 From: mustafa salih Date: Sat, 9 Jan 2021 04:10:19 +0300 Subject: [PATCH] Added cpu temperature and battery --- .github/workflows/rust.yml | 20 -- CODE_OF_CONDUCT.md | 76 ++++++++ CONTRIBUTING.md | 1 + Cargo.lock | 378 ++++++++++++++++++++++++++++++++++++- Cargo.toml | 11 +- README.md | 20 +- rsblocks.yml | 42 ++++- screenshots/1.png | Bin 6093 -> 0 bytes screenshots/2.png | Bin 0 -> 7810 bytes src/lib.rs | 373 ++++++++++++++++++++++++++++++------ src/main.rs | 3 +- 11 files changed, 829 insertions(+), 95 deletions(-) delete mode 100644 .github/workflows/rust.yml create mode 100644 CODE_OF_CONDUCT.md create mode 100644 CONTRIBUTING.md delete mode 100644 screenshots/1.png create mode 100644 screenshots/2.png diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml deleted file mode 100644 index 75959c5..0000000 --- a/.github/workflows/rust.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Rust - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -env: - CARGO_TERM_COLOR: always - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Build - run: cargo build --verbose diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..c2ade3b --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,76 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, sex characteristics, gender identity and expression, +level of experience, education, socio-economic status, nationality, personal +appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or + advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at mustafasalih1991@gmail.com. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see +https://www.contributor-covenant.org/faq diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..445e9bc --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1 @@ +All Contributions are welcome. diff --git a/Cargo.lock b/Cargo.lock index aa6a053..a6681e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,11 +1,165 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +[[package]] +name = "ahash" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e" + +[[package]] +name = "alsa" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb213f6b3e4b1480a60931ca2035794aa67b73103d254715b1db7b70dcb3c934" +dependencies = [ + "alsa-sys", + "bitflags", + "libc", + "nix 0.15.0", +] + +[[package]] +name = "alsa-sys" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527" +dependencies = [ + "libc", + "pkg-config", +] + +[[package]] +name = "async-channel" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59740d83946db6a5af71ae25ddf9562c2b176b2ca42cf99a455f09f4a220d6b9" +dependencies = [ + "concurrent-queue", + "event-listener", + "futures-core", +] + +[[package]] +name = "async-io" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9315f8f07556761c3e48fec2e6b276004acf426e6dc068b2c2251854d65ee0fd" +dependencies = [ + "concurrent-queue", + "fastrand", + "futures-lite", + "libc", + "log", + "nb-connect", + "once_cell", + "parking", + "polling", + "vec-arena", + "waker-fn", + "winapi", +] + +[[package]] +name = "async-net" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06de475c85affe184648202401d7622afb32f0f74e02192857d0201a16defbe5" +dependencies = [ + "async-io", + "blocking", + "fastrand", + "futures-lite", +] + +[[package]] +name = "async-task" +version = "4.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0" + +[[package]] +name = "atomic-waker" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a" + [[package]] name = "autocfg" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" +[[package]] +name = "bitflags" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" + +[[package]] +name = "blocking" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5e170dbede1f740736619b776d7251cb1b9095c435c34d8ca9f57fcd2f335e9" +dependencies = [ + "async-channel", + "async-task", + "atomic-waker", + "fastrand", + "futures-lite", + "once_cell", +] + +[[package]] +name = "breadx" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9bff92e2ec549fe3f20386d73efb30263be7467463def0c2a780d7cee5dbf5e3" +dependencies = [ + "async-io", + "async-net", + "blocking", + "bytemuck", + "cfg-if 1.0.0", + "cty", + "futures-lite", + "hashbrown", + "log", + "memchr", + "nix 0.19.1", + "ref_slice", + "tinyvec", +] + +[[package]] +name = "bytemuck" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41aa2ec95ca3b5c54cf73c91acf06d24f4495d5f1b1c12506ae3483d646177ac" + +[[package]] +name = "cache-padded" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba" + +[[package]] +name = "cc" +version = "1.0.66" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c0496836a84f8d0495758516b8621a622beb77c0fed418570e50764093ced48" + +[[package]] +name = "cfg-if" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + [[package]] name = "chrono" version = "0.4.19" @@ -19,6 +173,81 @@ dependencies = [ "winapi", ] +[[package]] +name = "concurrent-queue" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3" +dependencies = [ + "cache-padded", +] + +[[package]] +name = "cty" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7313c0d620d0cb4dbd9d019e461a4beb501071ff46ec0ab933efb4daa76d73e3" + +[[package]] +name = "event-listener" +version = "2.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7531096570974c3a9dcf9e4b8e1cede1ec26cf5046219fb3b9d897503b9be59" + +[[package]] +name = "fastrand" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca5faf057445ce5c9d4329e382b2ce7ca38550ef3b73a5348362d5f24e0c7fe3" +dependencies = [ + "instant", +] + +[[package]] +name = "futures-core" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "847ce131b72ffb13b6109a221da9ad97a64cbe48feb1028356b836b47b8f1748" + +[[package]] +name = "futures-io" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "611834ce18aaa1bd13c4b374f5d653e1027cf99b6b502584ff8c9a64413b30bb" + +[[package]] +name = "futures-lite" +version = "1.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4481d0cd0de1d204a4fa55e7d45f07b1d958abcb06714b3446438e2eff695fb" +dependencies = [ + "fastrand", + "futures-core", + "futures-io", + "memchr", + "parking", + "pin-project-lite", + "waker-fn", +] + +[[package]] +name = "hashbrown" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" +dependencies = [ + "ahash", +] + +[[package]] +name = "instant" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec" +dependencies = [ + "cfg-if 1.0.0", +] + [[package]] name = "libc" version = "0.2.81" @@ -31,6 +260,62 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a" +[[package]] +name = "log" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b" +dependencies = [ + "cfg-if 0.1.10", +] + +[[package]] +name = "memchr" +version = "2.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525" + +[[package]] +name = "minreq" +version = "2.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2466d0a7e6bfcd54f69e4a17d4a4318985aaaf7fe3df4cd3b6f11ff551129ca3" + +[[package]] +name = "nb-connect" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8123a81538e457d44b933a02faf885d3fe8408806b23fa700e8f01c6c3a98998" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "nix" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b2e0b4f3320ed72aaedb9a5ac838690a8047c7b275da22711fddff4f8a14229" +dependencies = [ + "bitflags", + "cc", + "cfg-if 0.1.10", + "libc", + "void", +] + +[[package]] +name = "nix" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2ccba0cfe4fdf15982d1674c69b1fd80bad427d293849982668dfe454bd61f2" +dependencies = [ + "bitflags", + "cc", + "cfg-if 1.0.0", + "libc", +] + [[package]] name = "num-integer" version = "0.1.44" @@ -51,10 +336,57 @@ dependencies = [ ] [[package]] -name = "rsblocks" -version = "0.1.1" +name = "once_cell" +version = "1.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0" + +[[package]] +name = "parking" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" + +[[package]] +name = "pin-project-lite" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b063f57ec186e6140e2b8b6921e5f1bd89c7356dda5b33acc5401203ca6131c" + +[[package]] +name = "pkg-config" +version = "0.3.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c" + +[[package]] +name = "polling" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2a7bc6b2a29e632e45451c941832803a18cce6781db04de8a04696cdca8bde4" dependencies = [ + "cfg-if 0.1.10", + "libc", + "log", + "wepoll-sys", + "winapi", +] + +[[package]] +name = "ref_slice" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e1b7878800220a76a08f32c057829511440f65528b63b940f2f2bc145d7ac68" + +[[package]] +name = "rsblocks" +version = "0.1.5" +dependencies = [ + "alsa", + "breadx", "chrono", + "minreq", + "nix 0.19.1", "yaml-rust", ] @@ -69,12 +401,54 @@ dependencies = [ "winapi", ] +[[package]] +name = "tinyvec" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf8dbc19eb42fba10e8feaaec282fb50e2c14b2726d6301dbfeed0f73306a6f" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" + +[[package]] +name = "vec-arena" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eafc1b9b2dfc6f5529177b62cf806484db55b32dc7c9658a118e11bbeb33061d" + +[[package]] +name = "void" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" + +[[package]] +name = "waker-fn" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" + [[package]] name = "wasi" version = "0.10.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" +[[package]] +name = "wepoll-sys" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fcb14dea929042224824779fbc82d9fab8d2e6d3cbc0ac404de8edf489e77ff" +dependencies = [ + "cc", +] + [[package]] name = "winapi" version = "0.3.9" diff --git a/Cargo.toml b/Cargo.toml index c74fe6b..ef392be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rsblocks" -version = "0.1.2" +version = "0.1.5" authors = ["mustafa salih "] edition = "2018" readme = "README.md" @@ -12,4 +12,11 @@ description = "a multi threaded status bar for dwm window manager for linux" [dependencies] chrono = "0.4" -yaml-rust = "0.4" \ No newline at end of file +yaml-rust = "0.4" +minreq = "2.2.1" +alsa = "0.4.3" +nix = "0.19.1" + +[dependencies.breadx] +version = "0.1.11" +features = ["async"] diff --git a/README.md b/README.md index 4077e8c..217937d 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,22 @@ # rsblocks -A minimal multi threaded fast status bar for dwm window manager written in **Rust** 🦀 +[github](https://github.com/MustafaSalih1993/rsblocks) +[crates](https://crates.io/crates/rsblocks) + + +A multi threaded fast status bar for dwm window manager written in **Rust** 🦀

- +


## Features * Multi Threads * Time/Date -* Used Memory -* Used Disk space -* Sound volume _reads from `alsa-utils` for now_ +* Memory Usage +* Disk Usage +* Weather Temperature +* Sound Volume +* Battery Percentage +* Cpu Temperature * Easy to configure with `rsblocks.yml` file @@ -58,5 +65,8 @@ cp ./rsblocks.yml ~/.config/rsblocks/rsblocks.yml ## Contributions All Contributions are welcome. +## Credits +* [wttr.in](https://github.com/chubin/wttr.in) for using their weather API + ## License [MIT](./LICENSE) diff --git a/rsblocks.yml b/rsblocks.yml index be6939f..6d0786c 100644 --- a/rsblocks.yml +++ b/rsblocks.yml @@ -1,28 +1,60 @@ -# This is the full configuration template available for rsblocks tool -# the names are clearly defines itself. +# This is the full configuration template available for rsblocks. -# NOTE: the (delay) is **seconds** with the float point to update the item in the bar. +# NOTE: the (delay) is in **SECONDS** and the float point "." is required. general: seperator: '┃' + time: icon: '' format: '%d %b, %I:%M:%S %p' delay: 1.0 + memory: enable: true icon: '▦' delay: 2.0 + disk: enable: true icon: '' delay: 120.0 -# reads from alsa-utils + +# reads from alsa, alsa-utils package should +# be installed on the system to make it work. volume: - enable: false + enable: true icon: '' delay: 0.18 + card: 'PULSE' + + +# weather format options is available on +# https://github.com/chubin/wttr.in +# NOTES: +# - if the city field set to empty, it will try to read location automatically. +# - if you have multiple formats and want to insert space between them use '+' instead. +# - giving (city) a value is recommended. +weather: + enable: true + icon: '' + city: '' + format: '%l:+%t' + delay: 7200.0 # 7200 seconds = 2 hours + + +battery: + source: 'BAT0' + icon: '' + enable: false + delay: 120.0 + + +cpu_temperature: + icon: '' + enable: true + delay: 120.0 diff --git a/screenshots/1.png b/screenshots/1.png deleted file mode 100644 index 67bff904e53f53ed079826f9a8db651be48e4f27..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6093 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 T3k0US00000NkvXXu0mjfvU$e$ diff --git a/screenshots/2.png b/screenshots/2.png new file mode 100644 index 0000000000000000000000000000000000000000..958332e22677c5f7277b9c32e13bbab7a5bf5fe8 GIT binary patch literal 7810 zcmV-|9)017P) zaB^>EX>4U6ba`-PAZ2)IW&i+q+O1Y;vNWj;{Ld+T1SFw_;{bvP-@wOrQeE$T%Z%-r z2zN!-LQx=PrV`5j*FR7B2YzJArKyK?vx;Bqt@FT5)X%R!XR7TvKfksrzpcNt7n1iQ zM$^52pM89;G|;X;KKPo0=CAD~-ZvcYK=eKE^OHOCz0aS6L_2@lsl5aB{kgFo{&T4F z9caBBpHSX^`wr_(7tiIF1_w&1m`IqnAnWHGp9tjsNd~T;b4R}_f_o7vxTw%O7y$Vt zy{~JnKLhj&$X|Emcl5u}{0)2_Zx8tmOM5ZG&7Zy?{jFWT=jWd%mhXu8w-@=4`fEDx z|D23-_9wg142asRs0ZvXgl@+P$mRLWa5(;odw-6OBkHINlxJOa;#ky)!OAJrC~454 z{ahCFtKK8W^UKyhKn~> zH+K*3K0=~}hJ{B&kI}gcJW#uJ@6mf7gUi4~17i*JA8468Wwxo)rq7stjs^LwwshI@ z6|1k2oRYAKwDgSZIX0CIr`T=lw(UE1-{U}QM@~C>?D&b(&-iBTW%Uoo-(Zbi*7#xS z_VaJn&|2KThM;RFdN~7Q+z5>OWdMTa%UKO-jW2VTv)UO&p^PB)a#NBnW1z5YVmC`+qQ3K;0jC`xDmku5;^Q>{Epo(<-RGBQ))lz1rD}XUDf2 ziqGMlFlxoj&8Ht-X9Lf%y0l>k_NL8M`|O$B_voEEd!ejbBq%KgI<7!VbLbtUYqAV=TI66^~J9GexL+UAwX+POV-%K zE%DqoK+6`feT`)zC1uhG)Umf4VP~~DEH>zG1J;Xv1NMU(P}h#{Y)UQnt_{Tv_&}7? zhOzYk4d@LZg9$ziPPR;KjTj_NtsQa-aFPjiS@fac#-};uVFn_-l9Z9LV^WJg_h}0s z7(%PC`7r|`=vxLDTo&MD-t5d|0t<-h_$1z#$Ae1HMhyFa_Zu^I7nT5K!*!vy4oH!~ zhB~p57$~(}0XpLL?M-(_U=#JTp(6M05(@v_X#C2$dlJ{foj;-LCz*x6Lvf1mVD@ydEm@tOSQ;J zzGjCu=1!w-D{9+^F6wwOC+6tb^P#HiG1L*#M#W)o6F#9wNiK*!sx&)>#jyLj`Bo@e z2CCKYH3l+=Wh_tFM&lfme5-t$cYNHijPi^EZRE+F>sHNOw=htyN0F;q+t{a0zY-KK9r7N}pCLK$a^&qSSJl5-4_w>;OKu$Eux-HqDbG_n1-LPyn51SU8r z&o!YvueZd?lq2h4FQb$fXC+t!X$LQGL3ONi+oP&?g)Pdwv7!R2oh#3dZ9_oI+2BV+ zHh68wcw^IrfV+i2fhY|SHXa5SU-~EFl4I>a6Mh8f1;#kw5EyO86j(GJoM3mEU}km{ zS29-DdKS`zz%{U05%7chF{q*HPFQJR#9<5kjso}9M4e3tcEc7ZWjvC2O2|<(0V#NuKt!_5eJ%UymJ?Mn}yhWp0q!`M}l!A{{-ZdlcPBV$BV8}?$@N3PvsXUWG0 zbkzaTX76@MMtQ(-fvX#KcquT)<$*dSji+SV}B|DWk!JW0004nX+uL$ zNkc;*aB^>EX>4Tx0C=2zkv&MmP!xqvQ>7{u2Rn$UWT;LSL`5963Pq?8YK2xEOkVmU zG-*guTpR`0f`dPcRR6lU)%*uLz(Mz#xWXW*M`Rl!R}6-BUN!U5sb>_x)MjYR+OnKqQ`FhG`S8 z6Hjg02Iqa^2rJ4e@j3CRNf#u3C_x?gjg)Ju+qY;Xllfh#8Fk# zDPPEVta9Gstd%OPaZmoja86%d;ySGXB(Q)*ND!f*f(?{lBSyPUiiH%N$9??$u3sXT zLaq%ka?GO)4YKP8|AXJNwel0=UQ##?w7)pc$1o7u1?pAD`95}>`Uwzx2Cnp`zgz>R zKS{4PwdfJhvkhEaH#KDsxZDByo($QPT`5RQ$mfCgGy0}1(0dDXt$K57oa6KXNYkv6 zH^9LmFjAoGHJ^8Pw9f6{p2qxs02t45gVsoGng9R*32;bRa{vGf6951U69E94oEQKA z00(qQO+^Rg0SN#fG$z};fB*m%bV)=(RCwC$U3XYhR~tV!>xOJLVIv?*L1efnOHqW% z6hU#%s%@>>THDY1X|S20RoDEECEH9>@6$7Ko}V$`Tn??kB{8MsG*ML z_weMo_uO-H-uIq!e(yNv2FTE8DEQbwfMEzgLZLt`76Uc@VfX}k|I--2ADtFz-uP$o z1C~nD{^-=$xb;N9l<2C8Vm7Nq-KqaHd;-1yX$;_xP75_}{4@ChqkbrAsG)`$YJ94| zeexQ@Fww-+s-nD5-PvlW@m^qTYDpo}`j{?TuRyQyL7Ubu7V!DfLN(M--X-eBOp1 z7JQhN!)HQ})W{i|SOf+|*Ho6Mz2r~X$mtsxd-{BS>HI-?6^I(7rC)EP(KV@529MWU zQC1Lp`T#O~F&Io>@GK|iu_Q93vA*ik`Gc)3jR1hKX^YG(hGMa}wB*~F=?Td9xQ`i6 zq0;W%y{Zz$#!s5+>hAR*|RI z_intl^5*TQ&cy6_R`PgIJ8bTvHBQcB2Nc%VRqWpSt@2;;_lODrpwTql$4(gQF;P=X zcjdAWq%dOo7sjTRtu4>bo!l#th#?5_9v|#B+E-WCKrEJYcD5fsw592J-8(jIKiqBh z{M9f_98mtOusWd@z58GH5s06;7fy?Lbjclc1AzEenKN=ow0;IMf}iHWHdfdKE>_Fc%-`BpZ= z%AY;;9v?h0AmZ}*Lp9ZXK6iRweQmj@uTT7HAbI+H?*Dn@^(!&emCyS6`UnKLyQ@Zg(qd;l!192g9pyquJQHx7ap-V=hIUB(sWXQ5tYGEIH_LeHJr zTT}I{e|g%2J6Y-Xq^C<)YjFz8lIEtDes>3lT~l33fMMj+ zZIpNXtqT=p1pt7{u?IKrIBh-D2}i)!*HuX*5+1LY%k3aj7@ZyML7{VQUO%J2zkXA+ zHaB#3a$-;K506}=si~U~cPTmXT1|DC^55X(Jf^&?u(&WMdd@dGdQ8N%dGDs9x3?Sg z0sw%3&lmOyxt*N1&gTw>c;-WFIqhv64jVbWdF>Pcz{1j2TA`cCe7K^BkjTM;(|v5%0KfC zNV#|G-9tCjU{0TDiuy^VX`l2vyFhL;TTUt5z`h^_%P-KVtmEkczURu^y95&8!h0@NV2i#}Q-j1h_CilgH~- z#>i!7-52ori@WD=$I-9`F)9AfvjjTk{81%h~yN5 z&d?s_=)Ps+asYs~t^rKc7*s7L1xC4#9-o_iA3dhDwqLg5=i`UB4v6Fi%)#2~vJMVg zf$#%H)Vm10eC1{ZSL1HQ#@~vS@fFcoj?3jpBx30_;c__|B&y=p6>x=o!g;+U{Z}RW z^Rv8!r>%o?TFM;&02Yf=tb&3TYirAg+By~$=JW{#diq9my4LghYUMc=Pap_|f|7z< z`(ZDQoV|l}we04PR|Os4*{`3M9-1OogtKeMbf9{`}C zL4qI*ulIi*ac_4wi9&69k`WrQfJ$RfX$(98=JR;|fsrvswoeR*G`ASaYHNsEXD?X&DDz%%VGiP1_x5!2 zcs&G|xNOBH53k9$|9VN33zx3T&P+Ofcxy{jz2chhjsb1Sii*Kt=PX?FI5+k1flU|; zX2zTqL1A-Z4sUyud4I*XTZu$664^Mrcs$NYg&=6h-i!No|A?Bsc`Y92rajJ0lV*Vs zXIzEcD(dU2D0|H|fv&C&9F8Cqq8KwCuXok=JGtDB*5>-`%=?cr?*RY^1eid84Gc{K zLuTpe8+CCz;%{Hb&PXDY=@0}V9;-AR>f-Ks_T=9863HpXI8XnQqCDjNAp!yJH-863 zi^RCgx!DigN29ym^|ckh?pV{#R+O3^F>>6KymZCF4;WGJh`QSHin2mqzfjo&)cW#R zuC4VspT~0>?VFx@hf3A-@Cv|UF&GS1ES9^npnw4s5YB5Qk;l(C9Dd8Lvjb+a|K~IC z1Y*|1L;!$16)+eKawDs)Sze0?cP=gcdgG407sX-`1YxdRIMjc1y_RDM1Xw8G7Z>MF z37bQJVF90SKg=aFJy9qW;&6Bj2J=R*^S^VjApep z^>lX=iR7xvlCWuu7@9hq7cAuJ)k{Z8it+#er6u{KnG_{%xki}G?(yZWVuj7)|sT>2vbfJCA?IJyfX`CZ)3U0YUx z_kqRB*OMtUWokZra7VUq*OpZT0!*RO%`9xfBNs~~lANsjSR4)jpwBdpIlQ%t+u`c& z9TBzU>Elc!>)U_IQR$i{X4W5IB!|V~MvwD56SGHN?pozqxQ_A~YU9LaHKShD(KGa& z7#4r~qU_!iDG8cc3`G`!6bY|VRFoCQ-Hi413za>Pll4buIe~zGI%ZdJ*!;lYS#2$i zIoS^+5{Uu}r{668h&El!{HRc+O?-}kQP z_4Y80%$9z&vA(uqfKRM|WAOx7DCDzRn>sk`p|(zy^>6S>uL=7?kFV~HUBvMZo z7Xa`$C-reoDgZ!F--u~!9(OBtYSb4`^D_l}{*#=vc}v!+B4=d>!^G&h-)!6TmA7xO zrS&k`IUg7led6eL0iTZ=N9*btZrOeIe_i4<8VQ^M01~l8s&fCkW-t7fLZKbn|8t*E zfRsed{A!q^8vsBo5yP;?(|kYRacg zUv?^H=XXE;N}dHS5lORSSA2~ox{l9p4YrDp@0G85ss3Qpz^a=Ebc#x zjZB8jnz!ownf=Im2Le9f^6-bcm8K3GOilxDyu4rt!*3!7&!$TOCZ2P zp%4I2T$pR;;DX1)O^wx^og6F<4*($GVHFs;U)Fyi&8qtcMj^-LrAm#kzP>&U5*Yv> zk%(Ds&1U9Sh^L0ZV2zE3B*k6nUpY8@-j&!x001lwD-nwT03xvni&eqfdlV`oCHZD< zR`TS)s4<`Uqt>x=aG5^y>yyWJ$lOb}u(aE?b#+5srSv&CjvOO3a`JHM*e-p2qp49# zc5nTT$Lls9V(a4W`R}#!knC&7)CKbRSNWQX0YR8oYlF}miHdAs+40La9Wu*lIav<^ zrbJVybmx&Ck23G8mQ(urgltyJ5GyKzIfRSCzB}KX6kxQ@`TuE^r z;(a2K+#5Za*Zizk{H@ryTd}C?@coCfiK&&Yo*_e1$7<+s5AT5bx|bIFQC6~_|Fj`i zb~<{@@W@31A-}vVUwWhanDOOh1?}x^004GtGtA|jE_jrA@9M>)b+r}d zmi7v&+1QUj@p*^4cW~OJPagpA^hxFrOFOFk4SNXiIDC3qd|hot^xPE?1Ys}`1Yzk6 zZ5mx`jK?GgM>qKs9=#?8gNc~2ltyDHqjEdD)z;pbM$>e0^ZYzy_8W=X&TegOX`C1^ zO@lqqkHMMkQzqa5>7V@Hu@<>mO^By1U zG;%D1p-rPPboC71&cOfADrY}HEjKl@9_HjufMI7BkM6F{60~rWNYof&Wv`{JM`vi; zIgA|X=2`yA`aUbp^O+E;qsyey7#^PfyxtymTN3~v@6iLF38B`ujyk$b_c7!B{HLml za8(k?VX>IVnaddr?b__%AII<_>|E6=fb0xT2=kz{~SC~z3=`Z)I?06_TC$i3O#lh?;g@wZ~r zl5Z)fpsmY{n)xM#N+VNfy*=HPU zaHrAfY4NXZ@#47yE7$Dwn>;Py&ZV@J+h2UWv5U*ef1HtU=aRLJBf1!srKmMA7_5t% zS9)rErxLFUB*a|`42pJj_bw^UJ9T^)vPh<+sCRE)IB|4GSj2*#HXX*}37s9BFOAWB@%8Y=h~HH zh56ZU-Q#CZ>^XblEf;U-4DI0XdAhoWFp=2KZp}=)o0Wd|)w;;Bi0Mnd{&ow2Kx}Pk zj5)duasJ|NU7%2Cv*xZ62>9it1!rRR%$T#{!-?duSiGyd_rsJp1zTPRNsIiv^!&W^ z3H}kNR~zc8q=6dhdO>4-wY>GbK|*&|r-F2)y!R92v0PZ>V&tVR4u^g3?$y-)XHoA7 zLH>bJElmws8TS-0fP5o|!VIXA7#O1Svvd~I8QM%kQ>LM5|KC8^@Z*9G4jWa4{?lKc z?&nVJ4Gx>T`iETznWU%0<>zH6&#?r;%S~ZIA%EMZucUQ^LID7PKzOrA4*D4X)z0P} zr^#gMAHV&(>{z6k zv6$6A{2KSyxu^M=A6M^xyaPBg`b$G2xz1U4H}~*?O&>)^Fc{i_A+rZW=e5N@bAP0xf@91EE z2o~<2g9~T(e;SH#IPA9$tp8@zR+p;qZQW0v89o+#l>bkTM5aD(s4jb!FT0QS(?jL^ z{$<#S0g-qd?(+FV!dF{H)xED);bYX|6XT6a^>0Qi*UKMex>5}_)KEhWHI%`B0o8>8 UM=SSs4*&oF07*qoM6N<$g8ghc$N&HU literal 0 HcmV?d00001 diff --git a/src/lib.rs b/src/lib.rs index 786d4cf..60a4c37 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,9 +1,10 @@ +use alsa::mixer::{Mixer, SelemChannelId, SelemId}; +use breadx::{display::*, window::Window}; use chrono::prelude::*; -use std::env; +use minreq; use std::fs::File; use std::io::Error; use std::io::Read; -use std::process::Command; use std::sync::mpsc; use std::thread; use std::time::Duration; @@ -15,6 +16,9 @@ pub enum ThreadsData { Disk(String), Memory(String), Time(String), + Weather(String), + Battery(String), + CpuTemp(String), } #[derive(Clone)] @@ -24,6 +28,9 @@ pub struct Config { pub memory: Memory, pub disk: Disk, pub volume: Volume, + pub weather: Weather, + pub battery: Battery, + pub cpu_temperature: CpuTemp, } #[derive(Clone)] @@ -51,10 +58,56 @@ pub struct Volume { pub icon: String, pub enabled: bool, pub delay: f64, + pub card: String, } +#[derive(Clone)] +pub struct Weather { + pub city: String, + pub format: String, + pub icon: String, + pub enabled: bool, + pub delay: f64, +} + +#[derive(Clone)] +pub struct Battery { + pub source: String, + pub icon: String, + pub enabled: bool, + pub delay: f64, +} + +#[derive(Clone)] +pub struct CpuTemp { + pub icon: String, + pub enabled: bool, + pub delay: f64, +} + +/* TODOS + + TODO 1: Error handling required if rsblocks.yml file is empty. + + TODO 2: This lib file growing and soon it will be annoying to move + arround, need fix soon. + + TODO 3: Need a better comments in code, or no one will understand what happens. + + TODO 4: Need a documentation. + + TODO 5: Fix repeated code for threads in `run` function. + +*/ + +/*this function is responsible to check if the rsblocks.yml file +exists to call parse_config to read it OTHERWISE +it will call load_defaults to load a hardcoded default configuration + +it will always return a valid configuration inside a Result. +*/ pub fn load_config() -> Result { - let yml_source = env::var("HOME").unwrap() + "/.config/rsblocks/rsblocks.yml"; + let yml_source = std::env::var("HOME").unwrap() + "/.config/rsblocks/rsblocks.yml"; let mut data = String::new(); let mut file = match File::open(&yml_source) { Ok(file) => file, @@ -64,12 +117,14 @@ pub fn load_config() -> Result { } }; file.read_to_string(&mut data)?; - let yml_content = &YamlLoader::load_from_str(&data).unwrap()[0]; let config = parse_config(yml_content); Ok(config) } +/* +this is simply returns a hardcoded configuration as default +*/ fn load_defaults() -> Config { Config { seperator: String::from("|"), @@ -92,29 +147,72 @@ fn load_defaults() -> Config { icon: String::from(""), enabled: false, delay: 0.17, + card: String::from("ALSA"), + }, + weather: Weather { + city: String::from(""), + format: String::from("+%t"), + icon: String::from(""), + enabled: false, + delay: 7200.0, //7200 seconds = 2 hours + }, + battery: Battery { + source: String::from("BAT0"), + icon: String::from(""), + enabled: false, + delay: 120.0, + }, + cpu_temperature: CpuTemp { + icon: String::from(""), + enabled: false, + delay: 120.0, }, } } +/* +it will read and parse the rsblocks.yml file content and return a valid configuration +IF some content is missing in the rsblocks.yml file, it will set +a default values to that +*/ fn parse_config(doc: &yaml::Yaml) -> Config { // parsing icons and set default if not exist in the config file let seperator = get_or_set_string(doc, "general", "seperator", "|"); let time_icon = get_or_set_string(doc, "time", "icon", ""); - let time_format = get_or_set_string(doc, "time", "format", "%T"); let mem_icon = get_or_set_string(doc, "memory", "icon", ""); let disk_icon = get_or_set_string(doc, "disk", "icon", ""); let volume_icon = get_or_set_string(doc, "volume", "icon", ""); + let weather_icon = get_or_set_string(doc, "weather", "icon", ""); + let battery_icon = get_or_set_string(doc, "battery", "icon", ""); + let cpu_temperature_icon = get_or_set_string(doc, "cpu_temperature", "icon", ""); + + //parsing formats and city weather + let time_format = get_or_set_string(doc, "time", "format", "%T"); + let weather_format = get_or_set_string(doc, "weather", "format", "%l:+%t"); + let weather_city = get_or_set_string(doc, "weather", "city", ""); // parsing enabled state (everything false by default) let disk_enabled = get_or_set_bool(doc, "disk", "enable"); let memory_enabled = get_or_set_bool(doc, "memory", "enable"); let volume_enabled = get_or_set_bool(doc, "volume", "enable"); + let weather_enabled = get_or_set_bool(doc, "weather", "enable"); + let battery_enabled = get_or_set_bool(doc, "battery", "enable"); + let cpu_temperature_enabled = get_or_set_bool(doc, "cpu_temperature", "enable"); // parsing update_delay state (should be all seconds in f64 type) - let time_delay = get_or_set_f32(doc, "time", "delay", 1.0); - let disk_delay = get_or_set_f32(doc, "disk", "delay", 60.0); - let memory_delay = get_or_set_f32(doc, "memory", "delay", 2.0); - let volume_delay = get_or_set_f32(doc, "volume", "delay", 0.17); + let time_delay = get_or_set_f64(doc, "time", "delay", 1.0); + let disk_delay = get_or_set_f64(doc, "disk", "delay", 120.0); + let memory_delay = get_or_set_f64(doc, "memory", "delay", 2.0); + let volume_delay = get_or_set_f64(doc, "volume", "delay", 0.17); + let weather_delay = get_or_set_f64(doc, "weather", "delay", 7200.0); + let battery_delay = get_or_set_f64(doc, "battery", "delay", 120.0); + let cpu_temperature_delay = get_or_set_f64(doc, "cpu_temperature", "delay", 120.0); + + // parsing card for volume, ALSA or PULSE + let volume_card = get_or_set_string(doc, "volume", "card", "ALSA"); + + // parsing battery source name + let battery_source = get_or_set_string(doc, "battery", "source", "BAT0"); Config { seperator, @@ -137,12 +235,31 @@ fn parse_config(doc: &yaml::Yaml) -> Config { icon: volume_icon, enabled: volume_enabled, delay: volume_delay, + card: volume_card, + }, + weather: Weather { + city: weather_city, + format: weather_format, + icon: weather_icon, + enabled: weather_enabled, + delay: weather_delay, + }, + battery: Battery { + source: battery_source, + icon: battery_icon, + enabled: battery_enabled, + delay: battery_delay, + }, + cpu_temperature: CpuTemp { + icon: cpu_temperature_icon, + enabled: cpu_temperature_enabled, + delay: cpu_temperature_delay, }, } } // getting a f32 value from rsblocks.yml file or set default (last argument) -fn get_or_set_f32(doc: &yaml::Yaml, parent: &str, child: &str, default: f64) -> f64 { +fn get_or_set_f64(doc: &yaml::Yaml, parent: &str, child: &str, default: f64) -> f64 { let val: f64 = if doc[parent][child].is_badvalue() { default } else { @@ -178,20 +295,30 @@ fn get_or_set_string(doc: &yaml::Yaml, parent: &str, child: &str, default_val: & */ -/* Running the program: -TODO: this is sucks, repeated code in threads below, fix me you fucking asshole - */ +// Running the program: -pub fn run(config: Config) { +pub struct Blocks { + disp: Display, + root: Window, +} + +impl Blocks { + pub fn new() -> Self { + let disp = Display::create(None, None).expect("Failed to create x11 connection"); + let root = disp.default_screen().root; + Self { disp, root } + } +} + +pub fn run(config: Config, mut blocks: Blocks) { let (tx, rx) = mpsc::channel(); - // volume thread if config.volume.enabled { let volume_tx = tx.clone(); let configcp = config.clone(); let mut vol_data = ThreadsData::Sound(get_volume(&configcp)); thread::spawn(move || loop { - let _ = volume_tx.send(vol_data); + volume_tx.send(vol_data).unwrap(); vol_data = ThreadsData::Sound(get_volume(&configcp)); thread::sleep(Duration::from_secs_f64(configcp.volume.delay)) }); @@ -222,6 +349,45 @@ pub fn run(config: Config) { }); } + // Weather thread + if config.weather.enabled { + let weather_tx = tx.clone(); + let configcp = config.clone(); + let weather_data = get_weather(&configcp); + let mut weather_data = ThreadsData::Weather(weather_data); + thread::spawn(move || loop { + weather_tx.send(weather_data).unwrap(); + weather_data = ThreadsData::Weather(get_weather(&configcp)); + thread::sleep(Duration::from_secs_f64(configcp.weather.delay)) + }); + } + + // Battery thread + if config.battery.enabled { + let battery_tx = tx.clone(); + let configcp = config.clone(); + let battery_data = get_battery(&configcp).unwrap(); + let mut battery_data = ThreadsData::Battery(battery_data); + thread::spawn(move || loop { + battery_tx.send(battery_data).unwrap(); + battery_data = ThreadsData::Battery(get_battery(&configcp).unwrap()); + thread::sleep(Duration::from_secs_f64(configcp.battery.delay)) + }); + } + + // Cpu temperature thread + if config.cpu_temperature.enabled { + let cpu_temp_tx = tx.clone(); + let configcp = config.clone(); + let cpu_temp_data = get_cpu_temp(&configcp).unwrap(); + let mut cpu_temp_data = ThreadsData::CpuTemp(cpu_temp_data); + thread::spawn(move || loop { + cpu_temp_tx.send(cpu_temp_data).unwrap(); + cpu_temp_data = ThreadsData::CpuTemp(get_cpu_temp(&configcp).unwrap()); + thread::sleep(Duration::from_secs_f64(configcp.cpu_temperature.delay)) + }); + } + // Time thread { let time_tx = tx; @@ -237,34 +403,36 @@ pub fn run(config: Config) { //Main { // NOTE: order matters to the final format - - let mut bar: Vec = vec!["".to_string(); 4]; + let mut bar: Vec = vec!["".to_string(); 7]; //iterating the values recieved from the threads for data in rx { match data { ThreadsData::Sound(x) => bar[0] = x, - ThreadsData::Disk(x) => bar[1] = x, - ThreadsData::Memory(x) => bar[2] = x, - ThreadsData::Time(x) => bar[3] = x, + ThreadsData::Weather(x) => bar[1] = x, + ThreadsData::Disk(x) => bar[2] = x, + ThreadsData::Memory(x) => bar[3] = x, + ThreadsData::CpuTemp(x) => bar[4] = x, + ThreadsData::Battery(x) => bar[5] = x, + ThreadsData::Time(x) => bar[6] = x, } // match ends here - update(&bar); + update(&bar, &mut blocks); } } } -pub fn update(bar: &Vec) { +pub fn update(bar: &Vec, blocks: &mut Blocks) { // TODO: FIX ME, this solution sucks let mut x = String::new(); for i in bar.iter() { x.push_str(i.as_str()); } - Command::new("xsetroot") - .arg("-name") - .arg(x) - .output() - .unwrap(); + + blocks + .root + .set_title(&mut blocks.disp, &x) + .expect("Failed to set title of root"); } /*############################ RUNNING THE PROGRAM ENDS HERE ###########################################*/ @@ -276,6 +444,7 @@ pub fn update(bar: &Vec) { ############################# HELPER FUNCTIONS BELOW ################################### */ + pub fn get_time(config: &Config) -> String { let now = Local::now(); @@ -287,50 +456,80 @@ pub fn get_time(config: &Config) -> String { ) } +/* +CREDIT: thanks for wttr.in to use their API +will make a GET request from wttr.in +*/ +fn get_weather(config: &Config) -> String { + let format = if config.weather.format.is_empty() { + String::from("%l:+%t") + } else { + config.weather.format.clone() + }; + + let url = format!("http://wttr.in/{}?format=\"{}", config.weather.city, format); + let err_string = String::from("Error"); + let res = match minreq::get(url).send() { + Ok(resp) => match resp.as_str() { + Ok(res_str) => res_str.trim_matches('"').to_string(), + Err(_) => err_string, + }, + Err(_) => err_string, + }; + + format!(" {} {} {}", config.weather.icon, res, config.seperator) +} + +// getting disk usage pub fn get_disk(config: &Config) -> String { - let cmd = Command::new("sh") - .arg("-c") - .args(&["df -h"]) - .output() - .unwrap(); - let output = String::from_utf8_lossy(&cmd.stdout); + const GB: u64 = (1024 * 1024) * 1024; + let statvfs = nix::sys::statvfs::statvfs("/").unwrap(); let mut disk_used = String::new(); - for line in output.lines() { - if line.ends_with('/') { - let splited = line.split_whitespace().collect::>(); - disk_used = splited[2].to_string(); - break; - } - } + + let total = (statvfs.blocks() * statvfs.fragment_size()) / GB; + let available = (statvfs.blocks_free() * statvfs.fragment_size()) / GB; + let used = total - available; + + disk_used.push_str(&format!("{}G", used)); format!( " {} {} {}", config.disk.icon, disk_used, config.seperator ) } -// TODO: what a horrible solution to get the sound, i dont like it -// find another way - pub fn get_volume(config: &Config) -> String { - let cmd_content = Command::new("amixer") - .args(&["-D", "pulse", "get", "Master"]) - .output() - .expect("Make sure that you have alsa-utils installed on your system"); + let card = if config.volume.card == "PULSE" { + "pulse" + } else { + "default" + }; - let vol: String = String::from_utf8_lossy(&cmd_content.stdout) - .lines() - .last() - .expect("failed to get sound volume") - .split('[') - .collect::>()[1] - .split(']') - .collect::>()[0] - .trim() - .to_string(); + let mixer = Mixer::new(card, false).expect("Failed to open mixer"); + let selem_id = SelemId::new("Master", 0); + let selem = mixer.find_selem(&selem_id).expect("Couldn't find selem"); + let selem_chan_id = SelemChannelId::FrontLeft; - format!(" {} {} {}", config.volume.icon, vol, config.seperator) + let (min, max) = selem.get_playback_volume_range(); + let mut raw_volume = selem + .get_playback_volume(selem_chan_id) + .expect("Failed to get raw_volume"); + + let range = max - min; + let vol = if range == 0 { + 0 + } else { + raw_volume -= min; + ((raw_volume as f64 / range as f64) * 100.) as u64 + }; + + format!(" {} {}% {}", config.volume.icon, vol, config.seperator) } +/* +mem_used = (mem_total + shmem - mem_free - mem_buffers - mem_cached - mem_srecl +thanks for htop's developer on stackoverflow for providing this algorithm to +calculate used memory. +*/ pub fn get_memory(config: &Config) -> Result { let mut buf = String::new(); @@ -392,7 +591,12 @@ pub fn get_memory(config: &Config) -> Result { } Ok(result) } -// helper function for the get_memory function + +/* +this helper function will split the line(first argument) by the character(:) +and then parse the right splited item as u32 +then assign that to the "assignable"(2nd argument). +*/ fn assign_val(line: &str, assignable: &mut u32) { let parsed: u32 = line.split(':').collect::>()[1] .trim() @@ -402,3 +606,52 @@ fn assign_val(line: &str, assignable: &mut u32) { .unwrap(); *assignable = parsed; } + +// getting battery percentage +pub fn get_battery(config: &Config) -> Result { + let battery_full_cap_file = format!( + "/sys/class/power_supply/{}/charge_full_design", + config.battery.source + ); + let battery_charge_now_file = format!( + "/sys/class/power_supply/{}/charge_now", + config.battery.source + ); + + let mut buf = String::new(); + + // FIXME: ugly error handling AGAIN fixing later, im lazy + match File::open(&battery_full_cap_file) { + Ok(mut file) => file.read_to_string(&mut buf)?, + Err(_) => return Ok(String::from("check your battery source name")), + }; + let full_design = buf.trim().parse::().unwrap(); + buf.clear(); + + // NOTE: no need to error check if passed the above match + File::open(&battery_charge_now_file)?.read_to_string(&mut buf)?; + + let charge_now = buf.trim().parse::().unwrap(); + + let battery_percentage = (charge_now as f32 / full_design as f32) * 100.0; + let result = format!( + " {} {:.0}% {}", + config.battery.icon, battery_percentage, config.seperator + ); + Ok(result) +} + +// getting cpu temperature +pub fn get_cpu_temp(config: &Config) -> Result { + let mut buf = String::new(); + File::open("/sys/class/thermal/thermal_zone0/temp")?.read_to_string(&mut buf)?; + let value = buf.trim().parse::().unwrap(); + + let result = format!( + " {} {}° {}", + config.cpu_temperature.icon, + value / 1000.0, + config.seperator + ); + Ok(result) +} diff --git a/src/main.rs b/src/main.rs index 2211cb9..c3a542d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,5 +2,6 @@ use rsblocks; fn main() { let config = rsblocks::load_config().unwrap(); - rsblocks::run(config); + let blocks = rsblocks::Blocks::new(); + rsblocks::run(config, blocks); }