0
trickyni trickyniv56@gmail.com
Sun, 31 Aug 2025 18:00:55 +0300
3 files changed,
10 insertions(+),
2 deletions(-)
M
bar/modules/Battery.qml
→
bar/modules/Battery.qml
@@ -11,6 +11,8 @@ Repeater {
model: UPower.devices.values Class.RightRowLayout { Class.BottombarText { + // text: !modelData.isLaptopBattery ? modelData.percentage*100+"%" : "" + // text: UPowerDeviceState.toString(modelData.state) text: modelData.percentage*100+"%" } Class.BottombarIcon {@@ -18,6 +20,12 @@ text: (({
"Jupiter of the Monkey": Icons.modules.headphones, "mix4": Icons.modules.mewi, })[modelData.model] ?? modelData.model)+" " + color: ({ + "Charging": Resources.palette.saffron, + "Discharging": Resources.palette.orange, + "FullyCharged": Resources.palette.cyan, + "Empty": Resources.palette.scarlet, + })[UPowerDeviceState.toString(modelData.state)] ?? Resources.palette.orange } Class.BotSep{} }
M
bar/modules/Moonphase.qml
→
bar/modules/Moonphase.qml
@@ -1,4 +1,4 @@
-// Moonphase.qml TODO +// Moonphase.qml import QtQuick import Quickshell import Quickshell.Io