diff --git a/dots/.config/quickshell/ii/modules/common/Persistent.qml b/dots/.config/quickshell/ii/modules/common/Persistent.qml index 5774912a2..478cadd10 100644 --- a/dots/.config/quickshell/ii/modules/common/Persistent.qml +++ b/dots/.config/quickshell/ii/modules/common/Persistent.qml @@ -131,13 +131,13 @@ Singleton { property real height: 600 property int tabIndex: 0 } - property JsonObject stickypad: JsonObject { - property bool pinned: true - property bool clickthrough: false - property real x: 100 - property real y: 100 - property real width: 350 - property real height: 600 + property JsonObject notes: JsonObject { + property bool pinned: false + property bool clickthrough: true + property real x: 1400 + property real y: 42 + property real width: 460 + property real height: 330 } } diff --git a/dots/.config/quickshell/ii/modules/ii/overlay/OverlayContext.qml b/dots/.config/quickshell/ii/modules/ii/overlay/OverlayContext.qml index 7cdc938bf..bb68cefc3 100644 --- a/dots/.config/quickshell/ii/modules/ii/overlay/OverlayContext.qml +++ b/dots/.config/quickshell/ii/modules/ii/overlay/OverlayContext.qml @@ -11,7 +11,7 @@ Singleton { { identifier: "floatingImage", materialSymbol: "imagesmode" }, { identifier: "recorder", materialSymbol: "screen_record" }, { identifier: "resources", materialSymbol: "browse_activity" }, - { identifier: "stickypad", materialSymbol: "note_stack" }, + { identifier: "notes", materialSymbol: "note_stack" }, { identifier: "volumeMixer", materialSymbol: "volume_up" }, ] diff --git a/dots/.config/quickshell/ii/modules/ii/overlay/OverlayWidgetDelegateChooser.qml b/dots/.config/quickshell/ii/modules/ii/overlay/OverlayWidgetDelegateChooser.qml index 97fc3b9ab..b7b26b9cf 100644 --- a/dots/.config/quickshell/ii/modules/ii/overlay/OverlayWidgetDelegateChooser.qml +++ b/dots/.config/quickshell/ii/modules/ii/overlay/OverlayWidgetDelegateChooser.qml @@ -23,6 +23,6 @@ DelegateChooser { DelegateChoice { roleValue: "fpsLimiter"; FpsLimiter {} } DelegateChoice { roleValue: "recorder"; Recorder {} } DelegateChoice { roleValue: "resources"; Resources {} } - DelegateChoice { roleValue: "stickypad"; Stickypad {} } + DelegateChoice { roleValue: "notes"; Stickypad {} } DelegateChoice { roleValue: "volumeMixer"; VolumeMixer {} } } diff --git a/dots/.config/quickshell/ii/modules/ii/overlay/stickypad/Stickypad.qml b/dots/.config/quickshell/ii/modules/ii/overlay/stickypad/Stickypad.qml index b702f9b94..e6a60bd78 100644 --- a/dots/.config/quickshell/ii/modules/ii/overlay/stickypad/Stickypad.qml +++ b/dots/.config/quickshell/ii/modules/ii/overlay/stickypad/Stickypad.qml @@ -1,16 +1,17 @@ import QtQuick import QtQuick.Layouts import Quickshell +import qs.services import qs.modules.common import qs.modules.ii.overlay StyledOverlayWidget { id: root - title: "Stickypad" + title: Translation.tr("Notes") showCenterButton: true contentItem: StickypadContent { - anchors.fill: parent + radius: root.contentRadius isClickthrough: root.clickthrough } }