status monitor
The status bar text of dwm is stored in the WM_NAME X11 property of the root window, which is managed by dwm.
It can be easily set and retrieved using standard Unix tools.
xsetroot -name $status
xprop -root -notype -f WM_NAME "8u" \
| sed -n -r 's/WM_NAME = \"(.*)\"/\1/p'
Alternatively, instead of xsetroot also xprop can be used to set the status-bar-text.
xprop -root -set WM_NAME $status
Set The Status Using A Shell Script
while true; do
xsetroot -name "$(date)"
sleep 2
done
Set The Status Using Other Methods
There are two status monitors maintained at suckless:
slstatus - suckless status
A somewhat complex status monitor which includes all batteries.
You can read more on the project page.
dwmstatus
Barebone status monitor with basic functions written in C. This follows the suckless philosophy, to give you an easy way to extend the source code to your needs. See the helper functions for C below, to extend it to your needs. Just check it out and keep on hacking.
git clone git://git.suckless.org/dwmstatus
cd dwmstatus
make
make PREFIX=/usr install
# add »dwmstatus 2>&1 >/dev/null &« to your .xinitrc
Status Monitors Submitted By Others
Feel free to add your own status monitors here (keeping the list sorted).
- akuma-v-dwm - event driven, modular, and extensible with date/time, all batteries, volume (amixer), backlight, memory and cpu usage out of the box.
- babashka-status-bar - dynamic status bar for dwm/tmux/etc, written in clojure. Supports external triggers.
- barM - can display all, time/date, ram usage, output of commands (the New BarMonitor).
- dsblocks - modular status monitor, written and meant to be configured in C, with support for signaling, clickability, cursor hinting and color.
- dstat Screenshot - displays the current network throughput, CPU usage, performance settings, battery status, temperature, volume settings, as well as the current date and time (OpenBSD only, no support for Linux).
- dwm-bar - modular status bar. modules for date/time, alsa volume, cmus track, countdown timer, current keyboard layout, mail count, system resources, and weather.
- dwmblocks - i3blocks-like status bar where you can refresh each "block" independently by update time or signal.
- dwmblocks - rewrite of dwmblocks with added features including clickability, cursor hinting and color.
- dwmblocks-async - Asynchronous version of dwmblocks with support for clickability. Unlike dwmblocks, each block is executed asynchronously so that the status bar never goes stale when a block takes time to execute.
- dwms - displays time, network, audio, and battery status, written in Go using XGB.
- dwmsd - a daemon that listens on localhost tcp (may be useful as a base for asynchronous updates)
- dwm-sss - shell script providing date, time and CPU temperature
- dwmstat - small and simple | IP, CPU temperature, system volume, current local time (and more) | config.h | OpenBSD
- estadobar - Volume, CPU load, Wifi, free memory, battery charge, + colored icon warnings on high temperature, high load, and low or charging battery. Needs 'statuscolors' patch; written in Python.
- goblocks - Partially inspired by dwmblocks, Go status bar that allows you to refresh each block independently. Includes built in features for frequently refreshed blocks.
- gocaudices - dwmblocks alternative written in go, Gocaudices is a dwmblocks replacement meant to be simple, fast, and elegant. It tries to adhere to the suckless philosophy.
- go-dwmstatus - A Go bar that prints current MPD song, load averages, time/date and battery percentage.
- gods - implemented in Go. prints network speed, cpu, ram, date/time
- integrated-status-text - A patch to have dwm itself handle the blocks asynchronously: this way we can handle mouse clicks, colors, etc. much easier.
- mblocks - A multi-threaded, memory-safe and elegant status monitor written in Rust.
- modbar - A modular status bar. Each module can be updated independently of the others based on a given time interval or by passing module name to a named pipe. Simple and cpu-efficient. Linux-only (for now).
- profil-dwmstatus-1.0.c - cpufreq, battery percent and date/time
- rsblocks - A fast multi threaded status bar written in Rust, configurable with a yaml file.
- sb - another modular bar written in POSIX shell
- sdwmbar - Simple DWM Bar written in pure C; written for FreeBSD and OpenBSD, can be easily modified to work for Linux
- spoon - set dwm status. Supports battery, cpu freq, date, file, load avg, keyboard layout, mpd, network speed, screen brightness, temperature, wifi, volume mixer. Works well on OpenBSD and Linux.
- suspend-statusbar.c - date, loadavg, battery and more. If battery goes below threshold - run suspend command
- sysmon - Net in/out, mem, swap, CPU and date info. Written in go using xgb and xproto to not spawn other processes.
- zara - Extremely simple status bar modeled after gocaudices expandable in Go through an interface. Modules include, beyond the basics, corona stats, weather, cpubars, network traffic, moonphase, and many more.
- ztatus - simple statusbar and notification daemon (through fifo). Displays only date and time normally. Configured to work with 'statuscolors' patch by default.
Helper Functions In The Shell
- posix scripts - basic collection of simple, fully POSIX sh compliant scripts to get various system information
- i3blocks-contrib - collection of python, perl and shell scripts
- Free memory:
free -h | awk '(NR==2){ print $4 }'
- Volume (device Master):
amixer get Master | awk -F'[][]' 'END{ print $4":"$2 }'
- Keyboard layout:
setxkbmap -query | awk '/layout/{ print $2 }'
- Empty disk space (mountpoint /home):
df -h | awk '{ if ($6 == "/home") print $4 }'
- wifi status (interface wlp3s0):
cat /sys/class/net/wlp3s0/operstate
- CPU temperature:
sed 's/000$/°C/' /sys/class/thermal/thermal_zone0/temp
. Alternatively you can useacpi -t
orsensors
from lm-sensors package. For older systems you can get the cpu temperature from/proc/acpi/thermal_zone/THM0/temperature
- Remaining battery:
cat /sys/class/power_supply/BAT0/capacity
. Alternatively you can useacpi -b
. For older systems you can get the battery capacity from/proc/acpi/battery/BAT0/state
.
Using shell scripts very well leads to big scripts, which pull in unneeded dependencies. One solution for this is to write everything in C, which is much more efficient.
Helper Functions In C (for dwmstatus or slstatus etc.)
If you have simple C functions for gathering system information, feel free to add them here (keeping the list sorted).
- ACPI battery status on Linux
- Battery on Linux: Battery percentage and status. + if charging, - if discharging, = if full.
- Detecting Man-In-The-Middle
- Disk usage and execute some check at different moments
- FIFO info: Replaces dynamic_info.
- Line per line the content of a file: See tmpinfo function. It prints line after line the content of /tmp/dwmbuf.
- MPD title/artist
- Number of new mails in a Maildir
- Temperature from /sys on Linux
- Uptime
- Up-, and downspeeds of all network interfaces from /proc/net on Linux
- Volume via ALSA API