some items

This commit is contained in:
2026-06-23 13:45:14 +01:00
parent 175cea641b
commit 2669f7e144
4 changed files with 74 additions and 12 deletions

View File

@@ -0,0 +1,29 @@
import QtQuick
import Quickshell
import Quickshell.Hyprland
import "../../Components/"
import "../../Services/"
Item {
id: root
required property HyprlandMonitor monitor
Row {
anchors.fill: parent
Repeater {
model: WorkspaceManager.getWorkspacesForMonitor(root.monitor)
CenteredText {
text: console.log("some")
}
// WorkspaceSelector {
// required property HyprlandWorkspace modelData
//
// workspace: modelData
// }
}
}
}

View File

@@ -0,0 +1,17 @@
import QtQuick
import Quickshell
import Quickshell.Hyprland
import "../../Components/"
import "../../Services/"
Item {
id: root
required property HyprlandWorkspace workspace
Rectangle {
StyledText {
text: "some"
}
}
}