noctalia-shell/shell.qml

46 lines
654 B
QML

// Disable reload popup
//@ pragma Env QS_NO_RELOAD_POPUP=1
import QtQuick
import Quickshell
import Quickshell.Io
import Quickshell.Widgets
import qs.Modules.Bar
import qs.Modules.DemoPanel
import qs.Modules.Background
ShellRoot {
id: root
Variants {
model: Quickshell.screens
delegate: Bar {
modelData: item
}
}
Background {}
Overview {}
// Variants {
// model: Quickshell.screens
// delegate: Background {
// modelData: item
// }
// }
// Variants {
// model: Quickshell.screens
// delegate: Overview {
// modelData: item
// }
// }
DemoPanel {
id: demoPanel
}
}