noctalia-shell/shell.qml
2025-08-10 06:57:11 -04:00

33 lines
419 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 {}
}
DemoPanel {
id: demoPanel
}
}