commit 26d8e9e006260611cd1daa556b42194612be69f5 parent 22ff37646c3088dd2db78082fa175ae14f581cde Author: Hekuran <62762955+narukeh@users.noreply.github.com> Date: Thu, 2 Apr 2020 13:09:54 +0200 memory statusbar with multilanguage support (#536) * for multilanguage support see issue number #535 * emoji Diffstat:
M | .local/bin/statusbar/memory | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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 | sed -n '2{p;q}' | awk '{print "🧠", $3 "/" $2}'