From 37ff7062874b72bafa99afe661f42653565ed511 Mon Sep 17 00:00:00 2001 From: Mitsuo Tokumori Date: Wed, 11 Sep 2024 04:25:38 +0900 Subject: RESTRUCTURE. Replicate relative paths in public/ --- public/code/dwmblocks/config.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 public/code/dwmblocks/config.h (limited to 'public/code/dwmblocks') diff --git a/public/code/dwmblocks/config.h b/public/code/dwmblocks/config.h new file mode 100644 index 0000000..6587a09 --- /dev/null +++ b/public/code/dwmblocks/config.h @@ -0,0 +1,26 @@ +// Modify this file to change what commands output to your statusbar, and +// recompile using the make command. Kill the previous dwmblocks if any, run +// `dwmblocks &` again. + +// DWM's status bar can also be changed with (xprop -root -set WM_NAME "hi") +// https://dwm.suckless.org/status_monitor/ + +// Other people's configs: +// https://github.com/LukeSmithxyz/dwmblocks/blob/master/config.h +// https://git.denshi.org/dwmblocks/tree/blocks.h + +static const Block blocks[] = { + /*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/ + + {"", "sb-input", 0, 20}, + {"", "sb-audio", 0, 10}, + {"", "sb-battery", 5, 0}, + {"🧠", "sensors | grep 'Tctl' | awk '{print $2}'", 5, 0}, + {"🐏", "free | awk '/^Mem/ { printf \"%.0f%\", $3/$2*100 }'", 5, 0}, + {"", "sb-network", 30, 30}, + {"", "date '+Q%qW%V%a %m月%d日 %H:%M'", 12, 0}, +}; + +//sets delimeter between status commands. NULL character ('\0') means no delimeter. +static char delim[] = " "; +static unsigned int delimLen = 5; -- cgit v1.2.3