feat: first draft of a battery indicator
Displays current charge level graphically, also displays the overall battery health, if it is provided by UPower, untested as my laptop battery does not privde that.
This commit is contained in:
parent
88a6eaf742
commit
913b13aa68
3 changed files with 58 additions and 0 deletions
|
@ -3,6 +3,7 @@ import QtQuick // for Text
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import "widgets/systray"
|
import "widgets/systray"
|
||||||
import "widgets/workspaces"
|
import "widgets/workspaces"
|
||||||
|
import "widgets/battery"
|
||||||
|
|
||||||
Scope {
|
Scope {
|
||||||
Variants {
|
Variants {
|
||||||
|
@ -39,6 +40,7 @@ Scope {
|
||||||
|
|
||||||
Workspaces {}
|
Workspaces {}
|
||||||
|
|
||||||
|
Battery {}
|
||||||
Item {
|
Item {
|
||||||
Layout.fillHeight: true
|
Layout.fillHeight: true
|
||||||
}
|
}
|
||||||
|
|
33
src/widgets/battery/Battery.qml
Normal file
33
src/widgets/battery/Battery.qml
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
import "root:base"
|
||||||
|
import Quickshell.Services.UPower
|
||||||
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
|
|
||||||
|
BRectangle {
|
||||||
|
visible: UPower.displayDevice != null
|
||||||
|
height: width * 2
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
anchors.fill: parent
|
||||||
|
anchors.margins: 5
|
||||||
|
color: "transparent"
|
||||||
|
|
||||||
|
Pill {
|
||||||
|
id: health
|
||||||
|
width: parent.width * 4 / 5
|
||||||
|
height: parent.height
|
||||||
|
anchors.right: parent.right
|
||||||
|
percentage: UPower.displayDevice.healthPercentage
|
||||||
|
visible: UPower.displayDevice.healthSupported
|
||||||
|
}
|
||||||
|
Pill {
|
||||||
|
id: battery
|
||||||
|
width: parent.width * (!UPower.displayDevice.healthSupported || 3 / 5)
|
||||||
|
height: parent.height
|
||||||
|
anchors.left: parent.left
|
||||||
|
|
||||||
|
percentage: UPower.displayDevice.percentage
|
||||||
|
color: 100 * percentage / 360
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
23
src/widgets/battery/Pill.qml
Normal file
23
src/widgets/battery/Pill.qml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
import QtQuick
|
||||||
|
|
||||||
|
Item {
|
||||||
|
property real percentage: 0.3 // Percentage of fullness
|
||||||
|
property real color: 0.7
|
||||||
|
property int radius: 5
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: background
|
||||||
|
anchors.fill: parent
|
||||||
|
radius: parent.radius
|
||||||
|
color: `${Qt.hsla(parent.color, 0.2, 0.6, 1)}`
|
||||||
|
}
|
||||||
|
|
||||||
|
Rectangle {
|
||||||
|
id: foreground
|
||||||
|
radius: parent.radius
|
||||||
|
height: parent.height * parent.percentage
|
||||||
|
width: parent.width
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
|
color: `${Qt.hsla(parent.color, 0.8, 0.6, 1)}`
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue