mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
feat: updates, work on qs
This commit is contained in:
parent
5686454354
commit
4be1b9f090
30 changed files with 773 additions and 74 deletions
24
quickshell/Components/Workspaces.qml
Normal file
24
quickshell/Components/Workspaces.qml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
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
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue