summaryrefslogtreecommitdiff
path: root/README.md
blob: 2c25f0ee6628aa1b963b8c51525e782465be73b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# slstatus

A suckless status monitor for DWM written in pure C without any system() calls.

# Information included

- wifi percentage
- battery percentage
- cpu usage in percent
- cpu temperature
- ram usage in percent
- alsa volume level in percent
- disk usage
- date
- time

Multiple batteries, wifi cards etc. are supported and everything can be reordered and customized via a C header file (similar to DWM).

# Screenshot

![screenshot](screenshot.png)

# Installation

Just run ```sudo make install```! :P

# Configuration

Just change config.h (commented) to your needs and recompile!

# Starting

Put the following code in your ~/.xinitrc:

```
while true; do
    slstatus
done &
```

# Contributing

See TODO.md for things that you could do.

People who contributed are listed in the CONTRIBUTORS.md file.

If you want to contribute, please use [the suckless coding style](http://suckless.org/coding_style)! For indentation please use 4 spaces.