2017-08-10 21:49:37 +02:00
|
|
|
slstatus - suckless status
|
|
|
|
==========================
|
|
|
|
slstatus is a suckless status monitor for window managers that use WM_NAME
|
|
|
|
(e.g. dwm) or stdin to fill the status bar.
|
|
|
|
|
|
|
|
|
|
|
|
Features
|
|
|
|
--------
|
|
|
|
- Battery percentage/power/state
|
|
|
|
- CPU usage
|
|
|
|
- CPU frequency
|
2017-09-16 13:54:28 +02:00
|
|
|
- CPU iowait
|
2017-08-10 21:49:37 +02:00
|
|
|
- Custom shell commands
|
|
|
|
- Date and time
|
|
|
|
- Disk status (free storage, percentage, total storage and used storage)
|
|
|
|
- Available entropy
|
|
|
|
- Username/GID/UID
|
|
|
|
- Hostname
|
2017-08-14 18:00:46 +02:00
|
|
|
- IP address (IPv4 and IPv6)
|
2017-08-10 21:49:37 +02:00
|
|
|
- Kernel version
|
|
|
|
- Keyboard indicators
|
|
|
|
- Load average
|
|
|
|
- Number of files in a directory (hint: Maildir)
|
|
|
|
- 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
|
|
|
|
|
|
|
|
|
|
|
|
Requirements
|
|
|
|
------------
|
2018-03-26 18:09:30 +02:00
|
|
|
In order to build slstatus you need the Xlib header files.
|
2017-08-10 21:49:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
Edit config.mk to match your local setup (slstatus is installed into the
|
2018-04-29 22:33:15 +02:00
|
|
|
/usr/local namespace by default). Uncomment OSSLIBS on OpenBSD.
|
2017-08-10 21:49:37 +02:00
|
|
|
|
2017-08-12 13:37:12 +02:00
|
|
|
Afterwards enter the following command to build and install slstatus (if
|
|
|
|
necessary as root):
|
2017-08-10 21:49:37 +02:00
|
|
|
|
|
|
|
make clean install
|
|
|
|
|
|
|
|
|
|
|
|
Running slstatus
|
|
|
|
----------------
|
|
|
|
See the man page for details.
|
|
|
|
|
|
|
|
|
|
|
|
Configuration
|
|
|
|
-------------
|
|
|
|
slstatus can be customized by creating a custom config.h and (re)compiling the
|
|
|
|
source code. This keeps it fast, secure and simple.
|
2018-03-18 22:51:51 +01:00
|
|
|
|
|
|
|
|
|
|
|
Todo
|
|
|
|
----
|
|
|
|
Porting to OpenBSD is the current goal before thinking about a release.
|
2018-03-18 23:30:54 +01:00
|
|
|
|
|
|
|
The following functions are not portable at the moment:
|
|
|
|
- wifi_{perc,essid}
|
|
|
|
- cpu_{freq,perc,iowait}
|
|
|
|
- entropy
|
|
|
|
- swap_{free,perc,total,used}
|
2018-03-19 18:44:52 +01:00
|
|
|
- battery_{power,state}
|