16 lines
184 B
QML
16 lines
184 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import Quickshell.Hyprland
|
|
|
|
Row {
|
|
id: root
|
|
|
|
spacing: 4
|
|
|
|
Repeater {
|
|
|
|
model: Hyprland.workspaces
|
|
|
|
Workspace {}
|
|
}
|
|
}
|