all repos — quickshell @ 4ed0758c7fa6305a3e9487b82bf7b96a64e79efb

A desert-witch desktop shell

bar/modules/LaptopBattery.qml (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
//LaptopBattery.qml
import QtQuick
import Quickshell
import QtQuick.Layouts
import Quickshell.Services.UPower
import ".."
import "../classes" as Class

RowLayout {
  id: laptop_battery
  spacing:2
  layoutDirection: Qt.RightToLeft
  Class.BottombarText {
    text: UPower.displayBattery.percentage + "%"
  }
}