From 0f867df271ee7f6fa169f25a1bc73c6d8c7db923 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 7 Nov 2025 13:02:34 +0100 Subject: [PATCH] overlay: better default positions --- .../quickshell/ii/modules/common/Persistent.qml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/common/Persistent.qml b/dots/.config/quickshell/ii/modules/common/Persistent.qml index f40fdf6cb..f2de212c9 100644 --- a/dots/.config/quickshell/ii/modules/common/Persistent.qml +++ b/dots/.config/quickshell/ii/modules/common/Persistent.qml @@ -80,7 +80,7 @@ Singleton { } property JsonObject overlay: JsonObject { - property list open: ["crosshair"] + property list open: ["crosshair", "recorder", "volumeMixer", "resources"] property JsonObject crosshair: JsonObject { property bool pinned: false property bool clickthrough: true @@ -90,21 +90,21 @@ Singleton { property JsonObject recorder: JsonObject { property bool pinned: false property bool clickthrough: false - property real x: 100 - property real y: 130 + property real x: 80 + property real y: 80 } property JsonObject resources: JsonObject { property bool pinned: false property bool clickthrough: true - property real x: 1000 - property real y: 320 + property real x: 1500 + property real y: 770 property int tabIndex: 0 } property JsonObject volumeMixer: JsonObject { property bool pinned: false property bool clickthrough: false - property real x: 100 - property real y: 320 + property real x: 80 + property real y: 250 } }