reorganize repo: move shell sources into shell/, test scripts into test/
This commit is contained in:
parent
344c1f8512
commit
d6cd2f173a
60 changed files with 2 additions and 2 deletions
54
shell/shell.qml
Normal file
54
shell/shell.qml
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
//@ pragma Env QS_NO_RELOAD_POPUP=1
|
||||
|
||||
import "modules"
|
||||
import "modules/lock" as Lock
|
||||
import Quickshell
|
||||
|
||||
ShellRoot {
|
||||
Lock.Lock {}
|
||||
|
||||
Variants {
|
||||
model: Quickshell.screens
|
||||
|
||||
Scope {
|
||||
id: scope
|
||||
required property var modelData
|
||||
|
||||
Bar {
|
||||
screen: scope.modelData
|
||||
}
|
||||
|
||||
Flyout {
|
||||
screen: scope.modelData
|
||||
}
|
||||
|
||||
LazyLoader {
|
||||
active: (Modules.notifications.maxPopups ?? 4) > 0
|
||||
NotifPopup {
|
||||
screen: scope.modelData
|
||||
}
|
||||
}
|
||||
|
||||
LazyLoader {
|
||||
active: Modules.backgroundOverlay.enable
|
||||
BackgroundOverlay {
|
||||
screen: scope.modelData
|
||||
}
|
||||
}
|
||||
|
||||
LazyLoader {
|
||||
active: Modules.overviewBackdrop.enable && NiriIpc.available
|
||||
OverviewBackdrop {
|
||||
screen: scope.modelData
|
||||
}
|
||||
}
|
||||
|
||||
LazyLoader {
|
||||
active: Modules.screenCorners.enable
|
||||
ScreenCorners {
|
||||
screen: scope.modelData
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue