noctalia-shell/shell.qml
2025-08-10 08:13:58 -04:00

29 lines
411 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
}
}