21 lines
638 B
QML
21 lines
638 B
QML
import Quickshell // for PanelWindow
|
|
import QtQuick // for Text
|
|
import QtQuick.Controls
|
|
import Quickshell.Io
|
|
import Quickshell.Widgets
|
|
import Quickshell.Services.UPower
|
|
|
|
ClippingWrapperRectangle {
|
|
radius: 5
|
|
width: 100; height: 30
|
|
color: "red"
|
|
Button {
|
|
id: button
|
|
text: " " + Math.floor(UPower.displayDevice.percentage * 100) + "%"
|
|
font.pointSize: 12
|
|
implicitHeight: parent.height
|
|
//icon.color: "red"
|
|
//icon.source: "/nix/store/c4dcn4vl0v5njv4d587sazrad1xgyd9h-rose-pine-icon-theme-unstable-2022-09-01/share/icons/rose-pine/symbolic/devices/battery-symbolic.svg"
|
|
}
|
|
}
|