summaryrefslogtreecommitdiffstats
path: root/.local/bin
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2020-03-31 20:30:19 -0400
committerLuke Smith <luke@lukesmith.xyz>2020-03-31 20:30:19 -0400
commit86a5b350a7bf57aede15d7fe063a5af5878d7d7b (patch)
tree671137f111f5fe1e29bc0916e8c89d4854510ea3 /.local/bin
parent581924c71c8890374d57164403b4634d4477b743 (diff)
downloadeibhear-86a5b350a7bf57aede15d7fe063a5af5878d7d7b.tar.gz
eibhear-86a5b350a7bf57aede15d7fe063a5af5878d7d7b.tar.zst
eibhear-86a5b350a7bf57aede15d7fe063a5af5878d7d7b.zip
labels moved to scripts for dwm compatibility
Diffstat (limited to '.local/bin')
-rwxr-xr-x.local/bin/statusbar/cpu2
-rwxr-xr-x.local/bin/statusbar/memory2
2 files changed, 2 insertions, 2 deletions
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}'