moved quickshell around

This commit is contained in:
2025-07-24 03:00:40 +01:00
parent 8e587b5718
commit 75145b0f41
11 changed files with 36 additions and 104 deletions

25
quickshell/SystemTray.qml Normal file
View File

@@ -0,0 +1,25 @@
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
}
}
}
}