From fb650907a0b18fab4f996c2fdc110d2d091e4060 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 5 Aug 2025 16:19:58 +1000 Subject: internal: rename dcontent -> controlcenter --- config/Config.qml | 4 ++-- config/ControlCenterConfig.qml | 11 +++++++++++ config/DContentConfig.qml | 11 ----------- 3 files changed, 13 insertions(+), 13 deletions(-) create mode 100644 config/ControlCenterConfig.qml delete mode 100644 config/DContentConfig.qml (limited to 'config') diff --git a/config/Config.qml b/config/Config.qml index ea7f3f4..a4a4a87 100644 --- a/config/Config.qml +++ b/config/Config.qml @@ -12,7 +12,7 @@ Singleton { property alias bar: adapter.bar property alias border: adapter.border property alias dashboard: adapter.dashboard - property alias dcontent: adapter.dcontent + property alias controlCenter: adapter.controlCenter property alias launcher: adapter.launcher property alias notifs: adapter.notifs property alias osd: adapter.osd @@ -36,7 +36,7 @@ Singleton { property BarConfig bar: BarConfig {} property BorderConfig border: BorderConfig {} property DashboardConfig dashboard: DashboardConfig {} - property DContentConfig dcontent: DContentConfig {} + property ControlCenterConfig controlCenter: ControlCenterConfig {} property LauncherConfig launcher: LauncherConfig {} property NotifsConfig notifs: NotifsConfig {} property OsdConfig osd: OsdConfig {} diff --git a/config/ControlCenterConfig.qml b/config/ControlCenterConfig.qml new file mode 100644 index 0000000..13afbd2 --- /dev/null +++ b/config/ControlCenterConfig.qml @@ -0,0 +1,11 @@ +import Quickshell.Io + +JsonObject { + property Sizes sizes: Sizes {} + + component Sizes: JsonObject { + property real heightMult: 0.7 + property real ratio: 16 / 9 + property real expandedNavWidth: 180 + } +} diff --git a/config/DContentConfig.qml b/config/DContentConfig.qml deleted file mode 100644 index 13afbd2..0000000 --- a/config/DContentConfig.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Quickshell.Io - -JsonObject { - property Sizes sizes: Sizes {} - - component Sizes: JsonObject { - property real heightMult: 0.7 - property real ratio: 16 / 9 - property real expandedNavWidth: 180 - } -} -- cgit v1.2.3-freya