diff --git a/AppImage/components/virtual-machines.tsx b/AppImage/components/virtual-machines.tsx
index 9874ccf..bf6bd12 100644
--- a/AppImage/components/virtual-machines.tsx
+++ b/AppImage/components/virtual-machines.tsx
@@ -807,7 +807,7 @@ export function VirtualMachines() {
<>
@@ -820,7 +820,7 @@ export function VirtualMachines() {
@@ -835,7 +835,7 @@ export function VirtualMachines() {
@@ -850,7 +850,92 @@ export function VirtualMachines() {
+
+
+ {/* Disk I/O */}
+
+
Disk I/O
+
+
+ ↓
+ {((selectedVM.diskread || 0) / 1024 ** 2).toFixed(2)} MB
+
+
+ ↑
+ {((selectedVM.diskwrite || 0) / 1024 ** 2).toFixed(2)} MB
+
+
+
+
+ {/* Network I/O */}
+
+
Network I/O
+
+
+ ↓
+ {((selectedVM.netin || 0) / 1024 ** 2).toFixed(2)} MB
+
+
+ ↑
+ {((selectedVM.netout || 0) / 1024 ** 2).toFixed(2)} MB
+
+
+
+
+
+ {getOSIcon(vmDetails?.os_info, selectedVM.type)}
+
+
+
+
+
+
+
+
+ {/* CPU Usage */}
+
+
CPU Usage
+
+ {(selectedVM.cpu * 100).toFixed(1)}%
+
+
+
+
+ {/* Memory */}
+
+
Memory
+
+ {(selectedVM.mem / 1024 ** 3).toFixed(1)} /{" "}
+ {(selectedVM.maxmem / 1024 ** 3).toFixed(1)} GB
+
+
+
+
+ {/* Disk */}
+
+
Disk
+
+ {(selectedVM.disk / 1024 ** 3).toFixed(1)} /{" "}
+ {(selectedVM.maxdisk / 1024 ** 3).toFixed(1)} GB
+
+