aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/run_with_dmenu.sh1
-rwxr-xr-xbin/virttop6
2 files changed, 4 insertions, 3 deletions
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",