diff --git a/espanso/src/patch/patches/linux/alacritty_terminal_x11.rs b/espanso/src/patch/patches/linux/alacritty_terminal_x11.rs index f02ea347..039d15ca 100644 --- a/espanso/src/patch/patches/linux/alacritty_terminal_x11.rs +++ b/espanso/src/patch/patches/linux/alacritty_terminal_x11.rs @@ -19,6 +19,8 @@ use std::sync::Arc; +use espanso_config::config::Backend; + use crate::patch::patches::{PatchedConfig, Patches}; use crate::patch::PatchDefinition; @@ -33,6 +35,7 @@ pub fn patch() -> PatchDefinition { name, Patches { paste_shortcut: Some(Some("CTRL+SHIFT+V".to_string())), + backend: Some(Backend::Clipboard), ..Default::default() }, ))