26 lines
527 B
QML
26 lines
527 B
QML
import Quickshell
|
|
import Quickshell.Io
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell.Widgets
|
|
import QtQuick.Effects
|
|
|
|
import Quickshell.Services.SystemTray
|
|
|
|
Item {
|
|
width: layout.width
|
|
height: layout.height
|
|
RowLayout {
|
|
id: layout
|
|
Repeater {
|
|
// id: repeater
|
|
model: SystemTray.items
|
|
required property int index
|
|
Text {
|
|
text: SystemTray.items.values[parent.index]
|
|
font.pointSize: 10
|
|
}
|
|
}
|
|
}
|
|
}
|