26 lines
375 B
QML
26 lines
375 B
QML
import QtQuick
|
|
import Quickshell.Io
|
|
import "../"
|
|
|
|
BarBlock {
|
|
property string battery
|
|
text: battery
|
|
|
|
Process {
|
|
id: batteryProc
|
|
command: ["block_battery"]
|
|
running: true
|
|
|
|
stdout: SplitParser {
|
|
onRead: data => battery = data
|
|
}
|
|
}
|
|
|
|
Timer {
|
|
interval: 1000
|
|
running: true
|
|
repeat: true
|
|
onTriggered: batteryProc.running = true
|
|
}
|
|
}
|
|
|