aboutsummaryrefslogtreecommitdiff
path: root/quickshell/items/Electrons.qml
blob: b50750950705354051836adc7392ba4f1bbb23e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import QtQuick
import QtQuick.Layouts

RowLayout {
  spacing: 0
  Text {
    text: " Electrons:"
    color: shellRoot.white
    font {
      family: shellRoot.fontFamily
      pixelSize: shellRoot.fontSize
    }
  }
  Text {
    text: (batteryCharging ? ("AC/DC(" + battery + ")") : battery)
    color: (battery <= redBatteryPoint) ? shellRoot.red : ((battery <= orangeBatteryPoint) ? shellRoot.orange : shellRoot.green)
    font {
      family: shellRoot.fontFamily
      pixelSize: shellRoot.fontSize
      bold: true
    }
  }
  MouseArea {
    anchors.fill: parent
    onClicked: shellRoot.batteryModeConfig = !shellRoot.batteryModeConfig
  }
}