From c795d52201380fe9a609e1760fb7da4033c62ebe Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 29 May 2026 09:32:01 +0200 Subject: [PATCH] Paste emojis via clipboard --- shell/plugins/emojis/Emojis.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/plugins/emojis/Emojis.qml b/shell/plugins/emojis/Emojis.qml index c8016c81..1945c8d5 100644 --- a/shell/plugins/emojis/Emojis.qml +++ b/shell/plugins/emojis/Emojis.qml @@ -145,7 +145,7 @@ Item { function applySelected(emoji) { if (!emoji) return root.dismiss() - Quickshell.execDetached([root.omarchyPath + "/bin/omarchy-clipboard-paste-text", emoji]) + Quickshell.execDetached([root.omarchyPath + "/bin/omarchy-clipboard-paste-text", "--shift-insert", emoji]) } ListModel { id: displayModel }