From 049d313d51d704dd9a571ef2ecf14a6cd3f364fb Mon Sep 17 00:00:00 2001 From: Aerosnail Date: Sat, 15 Nov 2025 13:55:43 +0100 Subject: [PATCH] SystemStatService: skip efivarfs to avoid stutters --- Services/System/SystemStatService.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Services/System/SystemStatService.qml b/Services/System/SystemStatService.qml index 24ce5e5f..d892f97c 100644 --- a/Services/System/SystemStatService.qml +++ b/Services/System/SystemStatService.qml @@ -92,9 +92,10 @@ Singleton { // -------------------------------------------- // Process to fetch disk usage in percent // Uses 'df' aka 'disk free' + // "-x efivarfs' skips efivarfs mountpoints, for which the `statfs` syscall may cause system-wide stuttering Process { id: dfProcess - command: ["df", "--output=target,pcent"] + command: ["df", "--output=target,pcent", "-x", "efivarfs"] running: false stdout: StdioCollector { onStreamFinished: {