Files
Aurora/config/aurora/modules/Battery.qml
2026-03-15 20:08:48 -05:00

35 lines
671 B
QML

import Quickshell // for PanelWindow
import QtQuick // for Text
import QtQuick.Controls
import QtQuick.Layouts
import Quickshell.Io
import Quickshell.Widgets
import Quickshell.Hyprland
import Quickshell.Services.UPower
ClippingWrapperRectangle {
radius: 3
color: Pywal.colors.color2
implicitWidth: 30
implicitHeight: text.contentWidth + text.padding
Text {
id: text
text: UPower.displayDevice.percentage * 100 + "%"
padding: 10
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
font.pointSize: 14
color: Pywal.special.foreground
rotation: -90
}
}