summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2026-03-15 22:29:28 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2026-03-15 22:29:28 +1100
commit521cd4079ee665dda1881fb6082497d58d654969 (patch)
treecc67b67be41223a878b92ddcd72e395f0be6a152 /config
parentbar/activewindow: format (diff)
downloadcaelestia-shell-521cd4079ee665dda1881fb6082497d58d654969.tar.gz
caelestia-shell-521cd4079ee665dda1881fb6082497d58d654969.tar.bz2
caelestia-shell-521cd4079ee665dda1881fb6082497d58d654969.zip
bar/activewindow: allow disable show on hover
Closes #1209 Closes #1019
Diffstat (limited to 'config')
-rw-r--r--config/BarConfig.qml1
-rw-r--r--config/Config.qml3
2 files changed, 3 insertions, 1 deletions
diff --git a/config/BarConfig.qml b/config/BarConfig.qml
index 2e04108..310344b 100644
--- a/config/BarConfig.qml
+++ b/config/BarConfig.qml
@@ -90,6 +90,7 @@ JsonObject {
component ActiveWindow: JsonObject {
property bool compact: false
property bool inverted: false
+ property bool showOnHover: true
}
component Tray: JsonObject {
diff --git a/config/Config.qml b/config/Config.qml
index 6efe960..2fd8c43 100644
--- a/config/Config.qml
+++ b/config/Config.qml
@@ -181,7 +181,8 @@ Singleton {
},
activeWindow: {
compact: bar.activeWindow.compact,
- inverted: bar.activeWindow.inverted
+ inverted: bar.activeWindow.inverted,
+ showOnHover: bar.activeWindow.showOnHover
},
tray: {
background: bar.tray.background,