quickshell/modules/bar/SystemTray.qml

24 lines
441 B
QML
Raw Normal View History

2025-12-21 20:59:33 +01:00
import Quickshell.Services.SystemTray
import QtQuick
Item {
id: root
clip: true
2026-01-03 20:16:51 +01:00
implicitWidth: layout.implicitWidth < 0 ? 0 : layout.implicitWidth
2026-01-13 12:12:16 +01:00
implicitHeight: 34
2025-12-21 20:59:33 +01:00
visible: layout.children.length > 0
Row {
id: layout
anchors.centerIn: parent
spacing: 10 // Spacing between icons
Repeater {
model: SystemTray.items
delegate: TrayItem {}
}
}
}