diff options
Diffstat (limited to 'config')
| -rw-r--r-- | config/Config.qml | 2 | ||||
| -rw-r--r-- | config/WInfoConfig.qml | 8 |
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 + } +} |