nova-shell/modules/PowerProfile.qml

31 lines
667 B
QML

import QtQuick
import Quickshell.Io
import "." as M
M.BarIcon {
id: root
property string profile: ""
icon: {
if (root.profile === "performance") return "\uF0E7";
if (root.profile === "power-saver") return "\uF06C";
if (root.profile === "balanced") return "\uF24E";
return "\uF0E7";
}
Process {
id: proc
running: true
command: ["powerprofilesctl", "get"]
stdout: StdioCollector {
onStreamFinished: root.profile = text.trim()
}
}
Timer {
interval: 5000
running: true
repeat: true
onTriggered: proc.running = true
}
}