diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-05 21:47:30 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-05 21:47:30 +1000 |
| commit | 017b1b4ce017600953f35a528660cca1f67dc86a (patch) | |
| tree | 45f82a1f7a7a4319107e94797e67f2dd4f2669a6 /modules/bar/popouts/Network.qml | |
| parent | popouts: battery add perf degradation warning (diff) | |
| download | caelestia-shell-017b1b4ce017600953f35a528660cca1f67dc86a.tar.gz caelestia-shell-017b1b4ce017600953f35a528660cca1f67dc86a.tar.bz2 caelestia-shell-017b1b4ce017600953f35a528660cca1f67dc86a.zip | |
feat: network popout
Also qstr dashboard performance pane labels
Diffstat (limited to 'modules/bar/popouts/Network.qml')
| -rw-r--r-- | modules/bar/popouts/Network.qml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/modules/bar/popouts/Network.qml b/modules/bar/popouts/Network.qml new file mode 100644 index 0000000..7a79ef1 --- /dev/null +++ b/modules/bar/popouts/Network.qml @@ -0,0 +1,22 @@ +import "root:/widgets" +import "root:/services" +import "root:/config" +import QtQuick + +Column { + id: root + + spacing: Appearance.spacing.normal + + StyledText { + text: qsTr("Connected to: %1").arg(Network.active?.ssid ?? "None") + } + + StyledText { + text: qsTr("Strength: %1/100").arg(Network.active?.strength ?? 0) + } + + StyledText { + text: qsTr("Frequency: %1 MHz").arg(Network.active?.frequency ?? 0) + } +} |