From 8fdceef1f3c5cea59f5e0eb1115f60de29750492 Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 31 Aug 2023 22:24:57 +0100 Subject: [PATCH 1/5] removed battery --- blocks.def.h | 1 - 1 file changed, 1 deletion(-) diff --git a/blocks.def.h b/blocks.def.h index 6b859c1..2d6680f 100644 --- a/blocks.def.h +++ b/blocks.def.h @@ -2,7 +2,6 @@ static const Block blocks[] = { /*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/ {" [", "sb-updates", 300, 11}, - {" [", "sb-battery-new", 1, 0}, {" [ ", "sb-mem-pct", 5, 0}, {" [󰻠 ", "sb-cpu-pct", 5, 0}, {" [" , "sb-volume", 5, 10}, From 0307fbc4876f90044bcc054403f837d0f641a0b4 Mon Sep 17 00:00:00 2001 From: mrsu Date: Wed, 7 Feb 2024 00:25:14 +0000 Subject: [PATCH 2/5] 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 3/5] 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 4/5] 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}, From c4e7a9b1eb98123e239ba76bc551934721fd18ca Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 31 May 2024 18:43:38 +0100 Subject: [PATCH 5/5] Remove sb-updates from statusbar, adjust update intervals. - Removed the sb-updates block from the statusbar. - Adjusted the update interval for sb-network-status to 60 seconds. - Kept other blocks (sb-mem-pct and sb-cpu-pct) unchanged. --- blocks.def.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/blocks.def.h b/blocks.def.h index 06a7e1d..15851ec 100644 --- a/blocks.def.h +++ b/blocks.def.h @@ -1,8 +1,7 @@ //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, 12}, + {" [", "sb-network-status", 5, 12}, {" [", "sb-updates", 60, 11}, {" [ ", "sb-mem-pct", 5, 0}, {" [󰻠 ", "sb-cpu-pct", 5, 0},