summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-21 22:47:13 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-21 22:47:13 +1000
commit4a86b66d06dda958f8d136234225ed160604a61a (patch)
tree8dab0f695e035f26dccc2089ee4636c2b7b7ee2a /config
parentpopouts: convert to layout (diff)
downloadcaelestia-shell-4a86b66d06dda958f8d136234225ed160604a61a.tar.gz
caelestia-shell-4a86b66d06dda958f8d136234225ed160604a61a.tar.bz2
caelestia-shell-4a86b66d06dda958f8d136234225ed160604a61a.zip
feat: window info panel
Also disable reload popup
Diffstat (limited to 'config')
-rw-r--r--config/Config.qml2
-rw-r--r--config/WInfoConfig.qml8
2 files changed, 10 insertions, 0 deletions
diff --git a/config/Config.qml b/config/Config.qml
index e7da4bd..f4c2500 100644
--- a/config/Config.qml
+++ b/config/Config.qml
@@ -14,6 +14,7 @@ Singleton {
property alias notifs: adapter.notifs
property alias osd: adapter.osd
property alias session: adapter.session
+ property alias winfo: adapter.winfo
property alias paths: adapter.paths
FileView {
@@ -32,6 +33,7 @@ Singleton {
property JsonObject notifs: NotifsConfig {}
property JsonObject osd: OsdConfig {}
property JsonObject session: SessionConfig {}
+ property JsonObject winfo: WInfoConfig {}
property JsonObject paths: UserPaths {}
}
}
diff --git a/config/WInfoConfig.qml b/config/WInfoConfig.qml
new file mode 100644
index 0000000..cd48a6b
--- /dev/null
+++ b/config/WInfoConfig.qml
@@ -0,0 +1,8 @@
+import Quickshell.Io
+
+JsonObject {
+ property JsonObject sizes: JsonObject {
+ property real heightMult: 0.7
+ property real detailsWidth: 500
+ }
+}