all repos — quickshell @ f40ff2c3cc06ce2e8e7619ce66725b0915cc287f

A desert-witch desktop shell

fixed network name text
trickyni trickyniv56@gmail.com
Thu, 09 Oct 2025 12:10:56 +0300
commit

f40ff2c3cc06ce2e8e7619ce66725b0915cc287f

parent

a3e4e9ed403b97ddfe3fc19d516ef8572ff2f26d

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

jump to
M README.mdREADME.md

@@ -6,7 +6,8 @@ - ...And maybe more

## fixes - volume icon not centered - - network name font + - and doesn't recenter when muted + - maybe make it recenter without changing node size ## TODO Additions: - Battery
M bar/modules/Network.qmlbar/modules/Network.qml

@@ -9,9 +9,10 @@ import "../classes" as Class

Class.RightRowLayout { property var wifi_strength + property var zwj Class.TopbarText { id: network - font.family: font_emoji.name + font.family: zwj ? font_emoji.name : font_proggy.name Process { id: network_script command: ["bar/scripts/network.sh"]

@@ -21,6 +22,7 @@ stdout: StdioCollector {

onStreamFinished: { network.text = this.text.trim().split(" ")[1] indicator.indicator_data = this.text.split(" ")[0].trim() + network.zwj=[...network.text].includes('\u200d') } } }