Xinqi Bao's Git

2fb2c487fbd893ac3ab926232da517acadff2093
[slstatus.git] / README.md
1 # slstatus
2
3 A suckless status monitor for DWM written in pure C without any system() calls.
4
5 # Information
6
7 - wifi percentage
8 - battery percentage
9 - cpu usage in percent
10 - cpu temperature
11 - ram usage in percent
12 - alsa volume level in percent
13 - date
14 - time
15
16 # Screenshot
17
18 ![screenshot](screenshot.png)
19
20 # Installation
21
22 Just run ```sudo make install```!
23
24 # Configuration
25
26 Just edit config.h and recompile!
27
28 # Starting
29
30 Put this in your ~/.xinitrc:
31
32 ```
33 while true; do
34 slstatus
35 done &
36 ```
37
38 # Contributing
39
40 See TODO.md for things that you could do.
41
42 People who contributed are listed in the CONTRIBUTORS.md file.
43
44 If you want to contribute, please use [the suckless coding style](http://suckless.org/coding_style)! For indentation please use 4 spaces.