slstatus/README.md

45 lines
752 B
Markdown
Raw Normal View History

2016-03-04 04:46:19 -05:00
# slstatus
2016-03-08 12:17:50 -05:00
2016-03-04 04:46:19 -05:00
A suckless status monitor for DWM written in pure C without any system() calls.
2016-03-08 12:17:50 -05:00
# Information
- wifi percentage
- battery percentage
- cpu usage in percent
- cpu temperature
- ram usage in percent
- alsa volume level in percent
- date
- time
2016-03-08 12:17:50 -05:00
# Screenshot
2016-03-08 12:18:47 -05:00
![screenshot](screenshot.png)
2016-03-08 12:17:50 -05:00
# Installation
Just run ```sudo make install```!
# Configuration
Just edit config.h and recompile!
2016-03-09 05:26:19 -05:00
2016-03-10 01:51:04 -05:00
# Starting
Put this in your ~/.xinitrc:
```
while true; do
slstatus
done &
```
2016-03-10 09:12:09 -05:00
# Contributing
2016-03-09 05:26:19 -05:00
2016-03-10 12:01:39 -05:00
See TODO.md for things that you could do.
2016-03-10 09:12:09 -05:00
People who contributed are listed in the CONTRIBUTORS.md file.
2016-03-10 12:01:39 -05:00
If you want to contribute, please use [the suckless coding style](http://suckless.org/coding_style)! For indentation please use 4 spaces.