Xinqi Bao's Git

loading thresholds state
[slstatus.git] / README.md
index c7a974d..a67a29d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,51 +1,73 @@
-slstatus
-========
+![slstatus](slstatus.png)
 
-**slstatus** is a suckless and lightweight status monitor for window managers which use WM_NAME as statusbar (e.g. DWM). It is written in pure C without any system() calls and only reads from files most of the time. It is meant as a better alternative to Bash scripts (inefficient) and Conky (bloated for this use).
+**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++).
 
-The following information is included:
+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.
 
-- battery percentage
-- cpu usage (in percent)
-- date and time
-- disk numbers (free storage, percentage, total storage and used storage)
-- available entropy
-- hostname
-- ip addresses
-- ram numbers (free ram, percentage, total ram and used ram)
-- temperature
-- volume percentage (alsa)
-- wifi percentage
+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.
 
-Multiple entries per function are supported and everything can be reordered and customized via a C header file (similar to DWM).
+The following information is included:
 
-![screenshot](screenshot.png)
+- Battery percentage/state
+- CPU usage (in percent)
+- Custom shell commands
+- Date and time
+- Disk[s] status (free storage, percentage, total storage and used storage)
+- Available entropy
+- Username/GID/UID
+- Hostname
+- IP addresses
+- Kernel version
+- Keyboard indicators
+- Load averages
+- Memory status (free memory, percentage, total memory and used memory)
+- Swap status (free swap, percentage, total swap and used swap)
+- Temperature
+- Uptime
+- Volume percentage (OSS/ALSA)
+- WiFi signal percentage and ESSID
+
+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).
 
 ## Usage
 
 ### Installation
 
-Before you continue, please be sure that a C compiler, `make` and `alsa-lib` are installed. Then compile the program once using `sudo make install`. After that you may change config.h to your needs and recompile it after any change! 
+Be sure you satisfy the dependencies: X11 and optionally ALSA (for volume percentage, I will *not* support PulseAudio).
+Also you should have basic development tools like a C compiler and GNU make installed.
+Then copy config.def.h to config.h and customize it to your needs.
+(Re)Compile (and install) it (after modifications):
+
+       $ make clean all
+       # make install
 
 ### Starting
 
-Put the following code in your ~/.xinitrc (or similar):
+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:
+
+       slstatus -d
+
+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:
+
+       slstatus -o | other_status_bar &
+
+### Specific function quirks
+
+- Volume percentage
+
+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:
 
 ```
-while true; do
-    slstatus
-done &
+# modprobe snd-pcm-oss
 ```
 
-The loop is needed that the program runs after suspend to ram.
-
 ## Contributing
 
-In [TODO.md](TODO.md) there is a list of things that have to be done.
+Hunt FIXME's in the code or do WTF you want! If it is useful, I will merge.
 
-People who contributed are listed in [CONTRIBUTORS.md](CONTRIBUTORS.md).
+People who contributed are listed in [CONTRIBUTORS.md](CONTRIBUTORS.md). Please add yourself to this list afterwards.
 
-For detailed information about coding style and restrictions see [CONTRIBUTING.md](CONTRIBUTING.md)
+For detailed information about coding style and restrictions see [CONTRIBUTING.md](CONTRIBUTING.md).
 
 ## License