From a9adc52bc8eb561e8e21fc38b001e128ff58f394 Mon Sep 17 00:00:00 2001 From: Chris Sobczak Date: Fri, 3 Jul 2026 01:21:13 -0700 Subject: Messing with it --- config.h | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'config.h') diff --git a/config.h b/config.h index c352569..2462f88 100644 --- a/config.h +++ b/config.h @@ -4,7 +4,7 @@ const unsigned int interval = 1000; /* text to show if no value can be retrieved */ -static const char unknown_str[] = "n/a"; +static const char unknown_str[] = "?"; /* maximum output string length */ #define MAXLEN 2048 @@ -66,11 +66,14 @@ static const char unknown_str[] = "n/a"; */ static const struct arg args[] = { /* function format argument */ - { run_command, " 🌐%s | ", "/home/chris/assets/scripts/traffic" }, - { run_command, "Ψ%s | ", "/home/chris/assets/scripts/cpu-temp" }, - { run_command, "ϕ%s | ", "/home/chris/assets/scripts/cpu-scaling rate" }, - { run_command, "⚡%s | ", "/home/chris/assets/scripts/power-now" }, - { run_command, "🔋%s | ", "/home/chris/assets/scripts/battery" }, - { run_command, "JPN %s | ", "TZ=Japan date '+%H:%M'" }, - { datetime, "%s", "%a %b %d %T" }, + { run_command, "🌐%s ", "/home/chris/assets/scripts/traffic" }, + { run_command, "Ψ%s ", "/home/chris/assets/scripts/cpu-temp" }, + { temp, "T%s ", "/home/chris/assets/scripts/cpu-temp" }, + { run_command, "ϕ%s ", "/home/chris/assets/scripts/cpu-scaling rate" }, + { cpu_freq, "S%s ", "" }, + { ram_used, "🐏%s ", "" }, + { run_command, "⚡%s ", "/home/chris/assets/scripts/power-now" }, + { run_command, "🔋%s ", "/home/chris/assets/scripts/battery" }, + { run_command, "JPN %s ", "TZ=Japan date '+%H:%M'" }, + { datetime, "PDT %s", "%a %b %d %T" }, }; -- cgit v1.2.3