diff --git a/espanso/src/cli/worker/engine/dispatch/executor/clipboard_injector.rs b/espanso/src/cli/worker/engine/dispatch/executor/clipboard_injector.rs index 163245b..bf7ac6c 100644 --- a/espanso/src/cli/worker/engine/dispatch/executor/clipboard_injector.rs +++ b/espanso/src/cli/worker/engine/dispatch/executor/clipboard_injector.rs @@ -81,6 +81,11 @@ impl<'a> ClipboardInjectorAdapter<'a> { custom_combination } else if cfg!(target_os = "macos") { vec![Key::Meta, Key::V] + } else if cfg!(target_os = "linux") && cfg!(feature = "wayland") { + // Because on Wayland we currently don't have app-specific configs (and therefore no patches) + // we switch to the more supported SHIFT+INSERT combination + // See: https://github.com/federico-terzi/espanso/issues/899 + vec![Key::Shift, Key::Insert] } else { vec![Key::Control, Key::V] };