wow numbers
This commit is contained in:
@@ -16,7 +16,7 @@ Container {
|
|||||||
required property HyprlandMonitor monitor
|
required property HyprlandMonitor monitor
|
||||||
|
|
||||||
boxHeight: 25
|
boxHeight: 25
|
||||||
boxWidth: 40
|
boxWidth: 200
|
||||||
exclusiveMonitor: monitor
|
exclusiveMonitor: monitor
|
||||||
|
|
||||||
defaultItem: WorkspaceContainer {
|
defaultItem: WorkspaceContainer {
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import QtQuick
|
import QtQuick
|
||||||
|
import QtQuick.Layouts
|
||||||
import Quickshell
|
import Quickshell
|
||||||
import Quickshell.Hyprland
|
import Quickshell.Hyprland
|
||||||
import "../../Components/"
|
import "../../Components/"
|
||||||
@@ -9,21 +10,18 @@ Item {
|
|||||||
|
|
||||||
required property HyprlandMonitor monitor
|
required property HyprlandMonitor monitor
|
||||||
|
|
||||||
Row {
|
RowLayout {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
||||||
|
|
||||||
Repeater {
|
Repeater {
|
||||||
model: WorkspaceManager.getWorkspacesForMonitor(root.monitor)
|
model: WorkspaceManager.getWorkspacesForMonitor(root.monitor)
|
||||||
|
|
||||||
CenteredText {
|
WorkspaceSelector {
|
||||||
text: console.log("some")
|
required property HyprlandWorkspace modelData
|
||||||
}
|
|
||||||
|
|
||||||
// WorkspaceSelector {
|
workspace: modelData
|
||||||
// required property HyprlandWorkspace modelData
|
}
|
||||||
//
|
|
||||||
// workspace: modelData
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,9 +9,7 @@ Item {
|
|||||||
|
|
||||||
required property HyprlandWorkspace workspace
|
required property HyprlandWorkspace workspace
|
||||||
|
|
||||||
Rectangle {
|
StyledText {
|
||||||
StyledText {
|
text: root.workspace.id
|
||||||
text: "some"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ Singleton {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return filteredWorkspaces;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getWorkspacesForMonitor(monitor) {
|
function getWorkspacesForMonitor(monitor) {
|
||||||
|
|||||||
Reference in New Issue
Block a user