summaryrefslogtreecommitdiffstats
path: root/code/dwmblocks/config.h
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2024-09-11 04:25:38 +0900
committerMitsuo Tokumori <[email protected]>2024-09-11 04:25:38 +0900
commit37ff7062874b72bafa99afe661f42653565ed511 (patch)
tree60372bf7fdb94c9034c7d1cc5a17cd7df526c4fc /code/dwmblocks/config.h
parentdca319b8d9d221f1aaf3a00ee457d202096c66ac (diff)
downloaddotfiles-37ff7062874b72bafa99afe661f42653565ed511.tar.gz
dotfiles-37ff7062874b72bafa99afe661f42653565ed511.tar.bz2
dotfiles-37ff7062874b72bafa99afe661f42653565ed511.zip
RESTRUCTURE. Replicate relative paths in public/
Diffstat (limited to 'code/dwmblocks/config.h')
-rw-r--r--code/dwmblocks/config.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/code/dwmblocks/config.h b/code/dwmblocks/config.h
deleted file mode 100644
index 6587a09..0000000
--- a/code/dwmblocks/config.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// 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;