From af844bbc44741a971614175248cc29505d1acbd1 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Mon, 8 Dec 2025 16:58:52 +0530 Subject: replaced wofi with custom app menu + right side apps bar + organization of qml files --- quickshell/items/Radio.qml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 quickshell/items/Radio.qml (limited to 'quickshell/items/Radio.qml') diff --git a/quickshell/items/Radio.qml b/quickshell/items/Radio.qml new file mode 100644 index 0000000..b3ee8e6 --- /dev/null +++ b/quickshell/items/Radio.qml @@ -0,0 +1,28 @@ +import QtQuick +import QtQuick.Layouts + +RowLayout { + spacing: 0 + Text { + text: " Radio:" + color: shellRoot.white + font { + family: shellRoot.fontFamily + pixelSize: shellRoot.fontSize + } + } + Text { + text: wifiName + color: wifiName == "Offline" ? shellRoot.red : shellRoot.green + font { + family: shellRoot.fontFamily + pixelSize: shellRoot.fontSize + bold: true + } + + MouseArea { + anchors.fill: parent + onClicked: networkManagerProc.running = true + } + } +} -- cgit v1.2.3