From 4065b9e083e5e72eb2cb79394b6e1a449d0da335 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Sat, 31 Dec 2022 23:17:18 +0330 Subject: update --- bin/run_with_dmenu.sh | 1 + bin/virttop | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'bin') diff --git a/bin/run_with_dmenu.sh b/bin/run_with_dmenu.sh index 8fda128..08580ca 100755 --- a/bin/run_with_dmenu.sh +++ b/bin/run_with_dmenu.sh @@ -1,4 +1,5 @@ #!/usr/bin/env zsh +# shellcheck source=../zshrc_stripped.sh . ~/scripts/zshrc_stripped.sh COMMAND=$(echo "" | dmenu -fn "DejaVuSansMono Nerd Font Mono-11.3;antialias=true;autohint=true" -l 20 -p "Quick Term:") RESULT=$(eval "$COMMAND") diff --git a/bin/virttop b/bin/virttop index be67a48..61dfd04 100755 --- a/bin/virttop +++ b/bin/virttop @@ -251,9 +251,9 @@ def fill_virt_data_uri( mem_stats = dom.memoryStats() virt_data.mem_actual.append(size_abr(mem_stats["actual"], 1000)) - # BSD guests dont have unused memory + # BSD guests dont support mem balloons? try: - virt_data.mem_unused.append(size_abr(mem_stats["unused"], 1000)) + virt_data.mem_unused.append(size_abr(mem_stats["available"], 1000)) except KeyError: virt_data.mem_unused.append("N/A") @@ -312,7 +312,7 @@ def main() -> None: "NAME", "CPU", "MEM_ACTUAL", - "MEM_UNUSED", + "MEM_AVAIL", "NET_WRITE_B", "NET_READ_B", "MAC", -- cgit v1.2.3