diff --git a/.config/quickshell/ii/modules/overview/SearchWidget.qml b/.config/quickshell/ii/modules/overview/SearchWidget.qml index 6e4c3cbf1..491222ae1 100644 --- a/.config/quickshell/ii/modules/overview/SearchWidget.qml +++ b/.config/quickshell/ii/modules/overview/SearchWidget.qml @@ -405,7 +405,12 @@ Item { // Wrapper } } - onModelChanged: root.focusFirstItemIfNeeded() + onModelChanged: { + root.focusFirstItemIfNeeded(); + if (root.searchingText.startsWith(Config.options.search.prefix.clipboard) && appResults.count > 0) { + appResults.positionViewAtIndex(0, ListView.Beginning); + } + } delegate: SearchItem { // The selectable item for each search result