0
trickyni trickyniv56@gmail.com
Fri, 23 Jan 2026 23:00:22 +0200
3 files changed,
6 insertions(+),
6 deletions(-)
M
bar/modules/Sunset.qml
→
bar/modules/Sunset.qml
@@ -13,7 +13,7 @@ spacing: 2
Class.Sep {} Class.TopbarIcon { id: sunset_indicator - text: sunset_script.data !== "NIGHT" ? "𖡹" :"𖥸" + text: sunset.text[0]== "+" ? "𖡹" :"𖥸" font.pixelSize: Resources.fontsize.topbar_bamum } Class.TopbarText {@@ -27,7 +27,8 @@ workingDirectory: Quickshell.shellDir
running: true stdout: StdioCollector { onStreamFinished: { - sunset.text = this.text.trim() + sunset.text = this.text.trim() + } } } }@@ -36,6 +37,6 @@ interval: 1000
running: true repeat: true onTriggered: sunset_script.running = true - } } } +
M
bar/modules/Workspaces.qml
→
bar/modules/Workspaces.qml
@@ -20,7 +20,7 @@ id: ws_mouse_area
hoverEnabled: true anchors.fill: parent cursorShape: Qt.PointingHandCursor - onClicked: I3.dispatch(`workspace number `+ modelData.number); + onClicked: I3.dispatch(`workspace number `+ modelData.name); } display: ws_special ? AbstractButton.IconOnly@@ -30,7 +30,7 @@ "10": "../../icons/phosphor/regular/text-align-left.svg",
"11": "../../icons/phosphor/regular/download.svg", "12": "../../icons/phosphor/regular/sliders.svg", "13": "../../icons/phosphor/regular/music.svg", - }) [modelData.number] ?? modelData.number + }) [modelData.name] ?? modelData.name icon.color: (modelData.name == ws_focused) ? Resources.palette.bg : Resources.palette.fg
M
bar/scripts/suntime.sh
→
bar/scripts/suntime.sh
@@ -12,7 +12,6 @@ now=$(date '+%H:%M')
output=$(qalc -t $sun - $now to time) echo "+"$output else - return NIGHT exit 1 fi