From 86a5b350a7bf57aede15d7fe063a5af5878d7d7b Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Tue, 31 Mar 2020 20:30:19 -0400 Subject: [PATCH] labels moved to scripts for dwm compatibility --- .config/i3blocks/config | 4 +--- .local/bin/statusbar/cpu | 2 +- .local/bin/statusbar/memory | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.config/i3blocks/config b/.config/i3blocks/config index e462654..457a9a2 100644 --- a/.config/i3blocks/config +++ b/.config/i3blocks/config @@ -37,11 +37,9 @@ signal=12 #[memory] #interval=30 -#label=🧠 #[cpu] #interval=15 -#label=💻 [volume] interval=once @@ -53,7 +51,7 @@ signal=10 #[disk] #interval=60 -#command=disk /home 🏠 +#command=disk /home [battery] command=battery BAT0 diff --git a/.local/bin/statusbar/cpu b/.local/bin/statusbar/cpu index 3b1394a..5b5528e 100755 --- a/.local/bin/statusbar/cpu +++ b/.local/bin/statusbar/cpu @@ -7,4 +7,4 @@ case $BLOCK_BUTTON in - % is of single core." ;; esac -sensors | awk '/Core 0/ {print $3}' +sensors | awk '/Core 0/ {print "🌡", $3}' diff --git a/.local/bin/statusbar/memory b/.local/bin/statusbar/memory index dfd3d7b..c1f704f 100755 --- a/.local/bin/statusbar/memory +++ b/.local/bin/statusbar/memory @@ -6,4 +6,4 @@ case $BLOCK_BUTTON in - Click to show memory hogs." ;; esac -free -h | awk '/^Mem:/ {print $3 "/" $2}' +free -h | awk '/^Mem:/ {print "🧠", $3 "/" $2}'