diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-26 14:30:48 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-26 14:30:48 +1000 |
| commit | 6880272c5b18acd063b47e1f04c03c1a78d08499 (patch) | |
| tree | 1bbd62d03bfc3e78e985202b25cd61679f0fabf7 /modules/drawers | |
| parent | popouts: fix scan icon rotation (diff) | |
| download | caelestia-shell-6880272c5b18acd063b47e1f04c03c1a78d08499.tar.gz caelestia-shell-6880272c5b18acd063b47e1f04c03c1a78d08499.tar.bz2 caelestia-shell-6880272c5b18acd063b47e1f04c03c1a78d08499.zip | |
config: allow enable/disable panels
Closes #240
Diffstat (limited to 'modules/drawers')
| -rw-r--r-- | modules/drawers/Drawers.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/drawers/Drawers.qml b/modules/drawers/Drawers.qml index 255bf72..86c2a1a 100644 --- a/modules/drawers/Drawers.qml +++ b/modules/drawers/Drawers.qml @@ -63,7 +63,7 @@ Variants { } HyprlandFocusGrab { - active: visibilities.launcher || visibilities.session + active: (visibilities.launcher && Config.launcher.enabled) || (visibilities.session && Config.session.enabled) windows: [win] onCleared: { visibilities.launcher = false; @@ -73,7 +73,7 @@ Variants { StyledRect { anchors.fill: parent - opacity: visibilities.session ? 0.5 : 0 + opacity: visibilities.session && Config.session.enabled ? 0.5 : 0 color: Colours.palette.m3scrim Behavior on opacity { |