moved quickshell around
This commit is contained in:
25
quickshell/SystemTray.qml
Normal file
25
quickshell/SystemTray.qml
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user