Xinqi Bao's Git

add num_files() function for maildirs ;)
[slstatus.git] / README.md
1 ![slstatus](slstatus.png)
2
3 **slstatus** is a suckless and lightweight status monitor for window managers that use WM_NAME as statusbar (e.g. DWM) or any other status bars if they support reading/piping from slstatus. It is written in pure C without any extern programs being executed and only reads from files most of the time. slstatus is meant to be a better alternative to Bash scripts (inefficient) and Conky (bloated and written in C++).
4
5 If you write a bash script that shows system information in WM_NAME (or any other status bar), it executes a huge amount of external commands (top, free etc.) every few seconds. This results in high system resource usage. slstatus solves this problem by only using C libraries and/or reading from files in sysfs/procfs most of the time.
6
7 Looking at the LOC (lines of code) of the [Conky project](https://github.com/brndnmtthws/conky), it is very interesting: *28346 lines C++, 219 lines Python and 110 lines Lua*. slstatus currently has about **800 lines of clean documented C code** and even includes additional possibilities as it can be customized and extended very easily. Configuring it by customizing the config.h (C header) file is very secure and fast as no config files are parsed at runtime.
8
9 The following information is included:
10
11 - Battery percentage/power/state
12 - CPU usage (in percent)
13 - CPU frequency (in MHz)
14 - Custom shell commands
15 - Date and time
16 - Disk[s] status (free storage, percentage, total storage and used storage)
17 - Available entropy
18 - Username/GID/UID
19 - Hostname
20 - IP addresses
21 - Kernel version
22 - Keyboard indicators
23 - Load averages
24 - Number of files in a directory (hint: Maildir)
25 - Memory status (free memory, percentage, total memory and used memory)
26 - Swap status (free swap, percentage, total swap and used swap)
27 - Temperature
28 - Uptime
29 - Volume percentage (OSS/ALSA)
30 - WiFi signal percentage and ESSID
31
32 Multiple entries per function (e.g. multiple batteries) are supported and everything can be reordered and customized via a C header file (similar to other suckless programs).
33
34 ## Usage
35
36 ### Installation
37
38 Be sure you satisfy the dependencies: X11 and optionally ALSA (for volume percentage, I will *not* support PulseAudio).
39 Also you should have basic development tools like a C compiler and GNU make installed.
40 Then copy config.def.h to config.h and customize it to your needs.
41 (Re)Compile (and install) it (after modifications):
42
43 $ make clean all
44 # make install
45
46 ### Starting
47
48 If you use DWM or any other window manager that uses WM_NAME, write the following code to ~/.xinitrc (or any other initialization script) to start slstatus automatically:
49
50 slstatus -d
51
52 If you use any other status bar or window manager you will have to figure it out yourself. Something like this could fit your requirements:
53
54 slstatus -o | other_status_bar &
55
56 ### Specific function quirks
57
58 - Volume percentage
59
60 If there is no `/dev/mixer` on your system and you use ALSA, it means you have to load the OSS compatibility module by issuing:
61
62 ```
63 # modprobe snd-pcm-oss
64 ```
65
66 ## Contributing
67
68 Hunt FIXME's in the code or do WTF you want! If it is useful, I will merge.
69
70 People who contributed are listed in [CONTRIBUTORS.md](CONTRIBUTORS.md). Please add yourself to this list afterwards.
71
72 For detailed information about coding style and restrictions see [CONTRIBUTING.md](CONTRIBUTING.md).
73
74 ## License
75
76 See [LICENSE](LICENSE).