SystemStatService: skip efivarfs to avoid stutters

This commit is contained in:
Aerosnail
2025-11-15 13:55:43 +01:00
parent 23962d9290
commit 049d313d51
+2 -1
View File
@@ -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: {