From 0307fbc4876f90044bcc054403f837d0f641a0b4 Mon Sep 17 00:00:00 2001 From: mrsu Date: Wed, 7 Feb 2024 00:25:14 +0000 Subject: [PATCH 1/3] added network monitor --- blocks.def.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/blocks.def.h b/blocks.def.h index 6b859c1..529add2 100644 --- a/blocks.def.h +++ b/blocks.def.h @@ -1,7 +1,8 @@ //Modify this file to change what commands output to your statusbar, and recompile using the make command. static const Block blocks[] = { /*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/ - {" [", "sb-updates", 300, 11}, + {" [", "sb-network-status", 5, 0}, + {" [", "sb-updates", 300, 11}, {" [", "sb-battery-new", 1, 0}, {" [ ", "sb-mem-pct", 5, 0}, {" [󰻠 ", "sb-cpu-pct", 5, 0}, From 92f4c6c87882cf75f0150f9317fd6da0868514a7 Mon Sep 17 00:00:00 2001 From: mrsu Date: Wed, 7 Feb 2024 12:05:53 +0000 Subject: [PATCH 2/3] change updates time --- blocks.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blocks.def.h b/blocks.def.h index 529add2..b1ac8ba 100644 --- a/blocks.def.h +++ b/blocks.def.h @@ -2,7 +2,7 @@ static const Block blocks[] = { /*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/ {" [", "sb-network-status", 5, 0}, - {" [", "sb-updates", 300, 11}, + {" [", "sb-updates", 10, 11}, {" [", "sb-battery-new", 1, 0}, {" [ ", "sb-mem-pct", 5, 0}, {" [󰻠 ", "sb-cpu-pct", 5, 0}, From a9bb058c32a341afaa17869a3cfc9ad252254c6b Mon Sep 17 00:00:00 2001 From: mrsu Date: Thu, 8 Feb 2024 12:42:23 +0000 Subject: [PATCH 3/3] modify update interval --- blocks.def.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blocks.def.h b/blocks.def.h index b1ac8ba..8e67749 100644 --- a/blocks.def.h +++ b/blocks.def.h @@ -1,8 +1,8 @@ //Modify this file to change what commands output to your statusbar, and recompile using the make command. static const Block blocks[] = { /*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/ - {" [", "sb-network-status", 5, 0}, - {" [", "sb-updates", 10, 11}, + {" [", "sb-network-status", 5, 12}, + {" [", "sb-updates", 60, 11}, {" [", "sb-battery-new", 1, 0}, {" [ ", "sb-mem-pct", 5, 0}, {" [󰻠 ", "sb-cpu-pct", 5, 0},