all repos — quickshell @ e5e7d5b81d5680177d3d337f5ff234e2f703c681

A desert-witch desktop shell

add night indicator to sunset module
trickyni trickyniv56@gmail.com
Thu, 09 Oct 2025 12:27:19 +0300
commit

e5e7d5b81d5680177d3d337f5ff234e2f703c681

parent

f40ff2c3cc06ce2e8e7619ce66725b0915cc287f

2 files changed, 6 insertions(+), 5 deletions(-)

jump to
M README.mdREADME.md

@@ -25,9 +25,6 @@

UI: - Sunset - disappears at night - - port to phosphor icons? - - or use icons8 color pixel icons? - - redo workspaces with proper button technology? Expansion: - notifications
M bar/modules/Sunset.qmlbar/modules/Sunset.qml

@@ -19,7 +19,10 @@ command: ["bar/scripts/suntime.sh"]

workingDirectory: Quickshell.shellDir running: true stdout: StdioCollector { - onStreamFinished: sunset.text = this.text.trim() + onStreamFinished: { + sunset.text = this.text.trim() + sunset_indicator.data = this.data + } } }

@@ -31,7 +34,8 @@ onTriggered: sunset_script.running = true

} } Class.TopbarIcon { - text: "𖡹" + id: sunset_indicator + text: sunset_indicator.data != "NIGHT" ? "𖡹" :"𖥸" font.pixelSize: Resources.fontsize.topbar_bamum } // Class.TopbarSVG {