blob: 2ce5cdcec46bfab64b72020d37705894917aaefd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import "root:/widgets"
import Quickshell.Services.SystemTray
import QtQuick
StyledRect {
animate: true
clip: true
visible: width > 0 && height > 0 // To avoid warnings about being visible with no size
BoxLayout {
Repeater {
model: SystemTray.items
TrayItem {}
}
}
}
|