nosignal-shell/modules/bar/components/Tray.qml
2 * r + 2 * t d54df2792a feat: bar panel preset
Make presets more flexible
Fix workspaces when show windows disabled
Make rounded option for workspaces
2025-05-01 00:56:55 +10:00

24 lines
470 B
QML

import "root:/widgets"
import "root:/config"
import Quickshell.Services.SystemTray
import QtQuick
StyledRect {
id: root
property color colour: Appearance.colours.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
}
}
}
}