quickshell/modules/bar/SystemTray.qml

26 lines
575 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
// This was already correct in your last file, but keep it this way!
2026-01-03 20:16:51 +01:00
implicitWidth: layout.implicitWidth < 0 ? 0 : layout.implicitWidth
2025-12-21 20:59:33 +01:00
implicitHeight: 30
// Hide if empty so we don't have a 50px gap for nothing
visible: layout.children.length > 0
Row {
id: layout
anchors.centerIn: parent
spacing: 10 // Spacing between icons
Repeater {
model: SystemTray.items
delegate: TrayItem {}
}
}
}