1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-10 07:42:09 -04:00

Connected frames & defaults

This commit is contained in:
purian23
2026-03-24 20:21:44 -04:00
parent e57ab3e1f3
commit 220bb2708b
11 changed files with 102 additions and 31 deletions

View File

@@ -19,7 +19,7 @@ Scope {
// Skips any edge where a bar already provides its own exclusiveZone.
Loader {
active: !root.barEdges.includes("top")
active: SettingsData.frameEnabled && !root.barEdges.includes("top")
sourceComponent: EdgeExclusion {
screen: root.screen
anchorTop: true
@@ -29,7 +29,7 @@ Scope {
}
Loader {
active: !root.barEdges.includes("bottom")
active: SettingsData.frameEnabled && !root.barEdges.includes("bottom")
sourceComponent: EdgeExclusion {
screen: root.screen
anchorBottom: true
@@ -39,7 +39,7 @@ Scope {
}
Loader {
active: !root.barEdges.includes("left")
active: SettingsData.frameEnabled && !root.barEdges.includes("left")
sourceComponent: EdgeExclusion {
screen: root.screen
anchorLeft: true
@@ -49,7 +49,7 @@ Scope {
}
Loader {
active: !root.barEdges.includes("right")
active: SettingsData.frameEnabled && !root.barEdges.includes("right")
sourceComponent: EdgeExclusion {
screen: root.screen
anchorRight: true