29 lines
863 B
QML
29 lines
863 B
QML
//@ pragma UseQApplication
|
|
import Quickshell
|
|
|
|
ShellRoot {
|
|
// Bar {
|
|
// modelData: Quickshell.screens.values[0]
|
|
// barComponentsLeft: ["NotificationsWidget.qml"]
|
|
// barComponentsCenter: ["Workspaces.qml"]
|
|
// barComponentsRight: ["AudioWidget.qml", "SysTrayWidget.qml", "ClockWidget.qml"]
|
|
// }
|
|
|
|
// Bar {
|
|
// panelMonitor: "DP-2"
|
|
// barComponentsLeft: []
|
|
// barComponentsCenter: ["Workspaces.qml"]
|
|
// barComponentsRight: ["AudioWidget.qml", "ClockWidget.qml"]
|
|
// }
|
|
|
|
Variants {
|
|
model: Quickshell.screens
|
|
delegate: Bar {
|
|
modelData: item
|
|
barComponentsLeft: ["NotificationsWidget.qml"]
|
|
barComponentsCenter: ["Workspaces.qml"]
|
|
barComponentsRight: ["AudioWidget.qml", "SysTrayWidget.qml", "ClockWidget.qml"]
|
|
}
|
|
}
|
|
}
|