noctalia-shell/shell.qml
2025-08-10 09:18:23 -04:00

28 lines
410 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
}
}