volume tabs

This commit is contained in:
Zacharias-Brohn
2026-01-26 18:52:04 +01:00
parent 2d5dd9cc14
commit 5d4e55a9c1
8 changed files with 391 additions and 129 deletions
+27 -1
View File
@@ -1,9 +1,35 @@
pragma ComponentBehavior: Bound
import Quickshell
import Quickshell.Networking
import QtQuick
import QtQuick.Layouts
import qs.Modules
import qs.Helpers
ColumnLayout {
Item {
id: root
required property var wrapper
ColumnLayout {
id: layout
spacing: 8
Repeater {
model: Network.devices
CustomRadioButton {
id: network
visible: modelData.name !== "lo"
required property NetworkDevice modelData
checked: Network.activeDevice?.name === modelData.name
onClicked:
text: modelData.description
}
}
}
}