blob: 4a931c14a0a9307a2771aaa029e15dd8cd24bec6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import QtQuick
import QtQuick.Controls
import Quickshell
import Quickshell.Io
import "../"
BarBlock {
id: text
content: BarText {
symbolText: `- ${Math.floor(percentFree)}%`
}
property real percentFree
Process {
id: memProc
command: ["sh", "-c", "free | grep Mem | awk '{print $3/$2 * 100.0}'"]
running: true
stdout: SplitParser {
onRead: data => percentFree = data
}
}
Timer {
interval: 2000
running: true
repeat: true
onTriggered: memProc.running = true
}
}
|