all repos — quickshell @ fe80d53b1ad94ec7ea394a3ca1825994913e7d47

A desert-witch desktop shell

0
trickyni trickyniv56@gmail.com
Sun, 31 Aug 2025 18:00:55 +0300
commit

fe80d53b1ad94ec7ea394a3ca1825994913e7d47

parent

06c34b8d9c2dcb5b19a7a08cc4ea7c5623b9fc66

3 files changed, 10 insertions(+), 2 deletions(-)

jump to
M TODO.txtTODO.txt

@@ -1,8 +1,8 @@

+Network Battery - laptop battery on top - charging indicator - popup with more details? -Network Low Priority - resize indicator - zen mode
M bar/modules/Battery.qmlbar/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.qmlbar/modules/Moonphase.qml

@@ -1,4 +1,4 @@

-// Moonphase.qml TODO +// Moonphase.qml import QtQuick import Quickshell import Quickshell.Io