2025-01-07 22:37:12 +04:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Layouts
|
2025-01-08 11:17:54 +04:00
|
|
|
import Quickshell
|
|
|
|
import Quickshell.Hyprland
|
2025-01-07 22:37:12 +04:00
|
|
|
|
2025-01-09 13:42:16 +04:00
|
|
|
Repeater {
|
|
|
|
id: repeater
|
|
|
|
|
|
|
|
model: Hyprland.workspaces.values.map(ws => ws.id)
|
|
|
|
property list<HyprlandWorkspace> workspaces: HyprlandIO.sortedworkspaces
|
|
|
|
}
|