2020-12-21 17:16:23 +01:00
|
|
|
# rsblocks
|
2020-12-21 12:00:27 +01:00
|
|
|
A minimal fast dwm status bar written in **Rust** 🦀
|
|
|
|
<p>
|
|
|
|
<img align="center" src="./screenshots/1.png"/>
|
|
|
|
</p><br/>
|
|
|
|
|
|
|
|
## Features
|
|
|
|
* Time/Date
|
|
|
|
* Used Memory
|
|
|
|
* Used Disk space
|
2020-12-24 02:34:32 +01:00
|
|
|
* Sound volume _reads from `amixer` for now_
|
2020-12-22 05:30:27 +01:00
|
|
|
* Easy to configure
|
|
|
|
* Minimal
|
2020-12-21 12:00:27 +01:00
|
|
|
|
|
|
|
## Note
|
|
|
|
This tool is still in development stage.
|
|
|
|
|
2020-12-21 12:11:19 +01:00
|
|
|
## Install
|
|
|
|
clone the repo
|
|
|
|
```sh
|
|
|
|
git clone https://github.com/mustafasalih1993/rsblocks
|
|
|
|
```
|
|
|
|
build with **cargo**
|
|
|
|
```sh
|
|
|
|
cargo build --release
|
|
|
|
```
|
|
|
|
move the executable somewhere in your **PATH** (assuming you are in the root dir of the project)
|
|
|
|
```sh
|
2020-12-21 17:16:23 +01:00
|
|
|
mv ./target/release/rsblocks /usr/local/bin
|
2020-12-21 12:11:19 +01:00
|
|
|
```
|
|
|
|
|
2020-12-21 17:16:23 +01:00
|
|
|
you good to go now and can run `rsblocks` from your terminal or put that in your `.xinitrc`
|
2020-12-21 12:11:19 +01:00
|
|
|
|
2020-12-22 05:30:27 +01:00
|
|
|
## Configuration
|
|
|
|
**rsblocks** will try to read the file `~/.config/rsblocks/rsblocks.yml`, if it does not exist, it will load the defaults.
|
|
|
|
|
|
|
|
create the directory
|
|
|
|
```sh
|
|
|
|
mkdir ~/.config/rsblocks
|
|
|
|
```
|
|
|
|
|
|
|
|
copy the [template](./rsblocks.yml) to the new config directory (assuming you are in the root dir of the repo)
|
|
|
|
```sh
|
|
|
|
cp ./rsblocks.yml ~/.config/rsblocks/rsblocks.yml
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2020-12-21 12:00:27 +01:00
|
|
|
## Contributions
|
|
|
|
All Contributions are welcome.
|
|
|
|
|
|
|
|
## License
|
|
|
|
[MIT](./LICENSE)
|