From 68ba5350ef666831367bdbce52d064ddcfbc65d7 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Wed, 5 Aug 2020 22:26:51 -0400 Subject: [PATCH] Icon Changes & Remove Username - Define divider symbol individually - Change divider to left angle - Replace icons - Remove username --- config.h | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/config.h b/config.h index bbd810a..90d9d97 100644 --- a/config.h +++ b/config.h @@ -10,7 +10,6 @@ static const char unknown_str[] = "?"; #define MAXLEN 2048 static const char battery_name[] = "BAT0"; -static const char divider_symbol[] = "|"; /* * function description argument (example) @@ -68,23 +67,23 @@ static const char divider_symbol[] = "|"; */ static const struct arg args[] = { /* function format argument */ - { divider, "%s", divider_symbol }, - { username, " %s", NULL }, - { divider, "%s", divider_symbol }, + { divider, "%s", " " }, + { check_updates, " %s", NULL }, + // { gid, " %s", NULL }, + { divider, "%s", "  " }, { cpu_perc, " %s%%", NULL }, - { divider, "%s", divider_symbol }, - { ram_perc, " %s%%", NULL }, - { divider, "%s", divider_symbol }, - { disk_perc, " %s%%", "/home" }, - { divider, "%s", divider_symbol }, - { check_updates, " %s", NULL }, - { divider, "%s", divider_symbol }, - { battery_state, " %s", battery_name }, + { divider, "%s", "  " }, + { ram_perc, " %s%%", NULL }, + { divider, "%s", "  " }, + { disk_perc, " %s%%", "/home" }, + // { divider, "%s", divider_symbol }, + { divider, "%s", "  " }, + { battery_state, " %s", battery_name }, // TODO: Make the battery icon change with the level and charging status { battery_perc, "%s%%", battery_name }, { battery_remaining, " (%s)", battery_name }, - { divider, "%s", divider_symbol }, - { datetime, " %s", "%a %x" }, - { divider, "%s", divider_symbol }, + { divider, "%s", "  " }, + { datetime, " %s", "%a %x" }, + { divider, "%s", "  " }, { datetime, " %s", "%I:%M:%S %p" }, - { divider, "%s", divider_symbol }, + { divider, "%s", " " }, };