Configured dwm-blocks for FreeBSD (Desktop)

This commit is contained in:
Skiz 2024-03-10 18:52:00 -04:00
parent 271a3c7476
commit f7a54997f2
No known key found for this signature in database
GPG Key ID: 1EB5BE65F8A6708C
2 changed files with 7 additions and 6 deletions

View File

@ -3,6 +3,8 @@ CC := cc
CFLAGS := -pedantic -Wall -Wno-deprecated-declarations -Os
LDFLAGS := -lX11
LDFLAGS += -L/usr/local/lib -I/usr/local/include
all: options dwmblocks
options:

View File

@ -10,12 +10,11 @@
static const Block blocks[] = {
// Label Command Int SIG
{"CPU: ", "sb-cpuusage", 1, 0},
{"Vol: ", "sb-volume", 1, SIG},
{"Mem: ", "sb-memory", 1, 0},
{"Temp: ", "sb-cputemp -f", 1, 0},
//{"IP: ", "sb-network", 1, 0},
{"Bat: ", "sb-battery", 60, 0},
{"", "date '+%b %d, %H:%M'", 1, 0},
{"Temp: ", "sb-cputemp", 1, 0},
//{"Mem: ", "sb-memory", 1, 0},
{"Vol: ", "sb-volume", 1, 0},
//{"Bat: ", "sb-battery", 60, 0},
{"", "date '+%b %d, %I:%M %p'", 1, 0},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.