nosignal-shell/modules/bar/components/Tray.qml
2025-05-05 14:50:18 +10:00

25 lines
491 B
QML

import "root:/widgets"
import "root:/services"
import "root:/config"
import Quickshell.Services.SystemTray
import QtQuick
StyledRect {
id: root
property color colour: Colours.palette.lavender
animate: true
clip: true
visible: width > 0 && height > 0 // To avoid warnings about being visible with no size
BoxLayout {
Repeater {
model: SystemTray.items
TrayItem {
colour: root.colour
}
}
}
}