mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
24 lines
348 B
QML
24 lines
348 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import "root:/DataSources"
|
|
import "root:/Components"
|
|
import Niri 0.1
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell
|
|
|
|
RowLayout {
|
|
id: root
|
|
property var screen
|
|
spacing: 10
|
|
|
|
Repeater {
|
|
model: niri.workspaces
|
|
|
|
WorkspaceButton {
|
|
modelData: model
|
|
screenData: screen
|
|
}
|
|
}
|
|
}
|