diff options
Diffstat (limited to 'suckless/dwmblocks/blocks.h')
-rw-r--r-- | suckless/dwmblocks/blocks.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/suckless/dwmblocks/blocks.h b/suckless/dwmblocks/blocks.h new file mode 100644 index 0000000..ec01b6c --- /dev/null +++ b/suckless/dwmblocks/blocks.h @@ -0,0 +1,13 @@ +/* NOTE: `internet-status` is available in my scripts repository, linked below: */ +/* https://git.schark.online/scripts */ +/* https://github.com/jordanscharkey/scripts */ + +static const Block blocks[] = { + /*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/ + {"\ Volume:", "pulsemixer --get-volume | sed 's/ .*//'", 5, 0}, + {"Internet:", "internet-status", 10, 0}, + {"", "date '+%b %d (%a) %I:%M%p'", 30, 0}, +}; + +static char delim[] = " | "; +static unsigned int delimLen = 5; |