Files
z-bar-qt/Modules/UPower/UPowerWidget.qml
T
Zacharias-Brohn a717c8c18c battery-wid
2026-02-11 16:08:38 +01:00

20 lines
295 B
QML

import Quickshell
import QtQuick
import qs.Components
import qs.Config
import qs.Helpers
import qs.Modules
Item {
id: root
implicitWidth: 100
anchors.top: parent.top
anchors.bottom: parent.bottom
CustomText {
text: UPower.batteryDevice.percentage + "%"
anchors.centerIn: parent
}
}