From f46835c9a1ad0cec52f5ac50059fe1d02274868a Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 14 Nov 2025 10:07:07 +0100 Subject: [PATCH] stickypad: moves files to correct place --- .../ii/modules/{ => ii}/overlay/stickypad/Stickypad.qml | 2 +- .../{ => ii}/overlay/stickypad/StickypadContent.qml | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) rename dots/.config/quickshell/ii/modules/{ => ii}/overlay/stickypad/Stickypad.qml (90%) rename dots/.config/quickshell/ii/modules/{ => ii}/overlay/stickypad/StickypadContent.qml (98%) diff --git a/dots/.config/quickshell/ii/modules/overlay/stickypad/Stickypad.qml b/dots/.config/quickshell/ii/modules/ii/overlay/stickypad/Stickypad.qml similarity index 90% rename from dots/.config/quickshell/ii/modules/overlay/stickypad/Stickypad.qml rename to dots/.config/quickshell/ii/modules/ii/overlay/stickypad/Stickypad.qml index 1db5f6693..b702f9b94 100644 --- a/dots/.config/quickshell/ii/modules/overlay/stickypad/Stickypad.qml +++ b/dots/.config/quickshell/ii/modules/ii/overlay/stickypad/Stickypad.qml @@ -2,7 +2,7 @@ import QtQuick import QtQuick.Layouts import Quickshell import qs.modules.common -import qs.modules.overlay +import qs.modules.ii.overlay StyledOverlayWidget { id: root diff --git a/dots/.config/quickshell/ii/modules/overlay/stickypad/StickypadContent.qml b/dots/.config/quickshell/ii/modules/ii/overlay/stickypad/StickypadContent.qml similarity index 98% rename from dots/.config/quickshell/ii/modules/overlay/stickypad/StickypadContent.qml rename to dots/.config/quickshell/ii/modules/ii/overlay/stickypad/StickypadContent.qml index d8473ea33..adc7724d0 100644 --- a/dots/.config/quickshell/ii/modules/overlay/stickypad/StickypadContent.qml +++ b/dots/.config/quickshell/ii/modules/ii/overlay/stickypad/StickypadContent.qml @@ -7,8 +7,9 @@ import qs import qs.services import qs.modules.common import qs.modules.common.widgets +import qs.modules.ii.overlay -Rectangle { +OverlayBackground { id: root readonly property real panelPadding: 20 @@ -19,9 +20,6 @@ Rectangle { property var parsedCopylistLines: [] property bool isClickthrough: false - color: Appearance.colors.colLayer0 - radius: Appearance.rounding.windowRounding - 6 - Component.onCompleted: { stickypadFile.reload() updateCopylistEntries() @@ -279,7 +277,7 @@ Rectangle { rightMargin: 8 } text: saveDebounce.running ? "Saving..." : "Saved" - color: saveDebounce.running ? Appearance.colors.colAccent : Appearance.colors.colSubtext + color: Appearance.colors.colSubtext font.pixelSize: Appearance.font.pixelSize.small font.weight: Font.Medium }