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:
Nydragon 2024-08-29 05:43:59 +02:00
parent 88a6eaf742
commit 913b13aa68
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
3 changed files with 58 additions and 0 deletions

View file

@ -3,6 +3,7 @@ import QtQuick // for Text
import QtQuick.Layouts
import "widgets/systray"
import "widgets/workspaces"
import "widgets/battery"
Scope {
Variants {
@ -39,6 +40,7 @@ Scope {
Workspaces {}
Battery {}
Item {
Layout.fillHeight: true
}

View 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
}
}
}

View 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)}`
}
}