sliders 0.0.1

sliders widget in the terminal
Documentation
  • Coverage
  • 0%
    0 out of 4 items documented0 out of 3 items with examples
  • Size
  • Source code size: 240.52 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 334.72 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 15s Average build duration of successful builds.
  • all releases: 15s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • yazgoo/sliders
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • yazgoo

sliders

sliders in the terminal

screenshot

screenshot

example

For this example, let's store counter in 2 files

$ echo 0 > hello.counter
$ echo 0 > world.counter

Then, let's launch two sliders which will write/read to/from those files:

cargo run -- --name hello --get 'cat hello.counter' --set 'echo {} > hello.counter' \
             --name world --get 'cat world.counter' --set 'echo {} > world.counter'

backlight-mixer

You can use this to update your backlight with backlight-mixer.

$ cargo run -- --name backlight --get "backlight-mixer" --set "backlight-mixer {}"

volume mixer

$ cargo run -- --name volume \
               --get "amixer sget Master | tail -1 | cut -d'[' -f2 | cut -d'%' -f1" \
               --set "amixer sset Master {}%"