feat(core): add LibreOffice writer patch
This commit is contained in:
parent
40ad3c8551
commit
f9f7db623d
|
@ -39,6 +39,7 @@ fn get_builtin_patches() -> Vec<PatchDefinition> {
|
||||||
|
|
||||||
#[cfg(target_os = "linux")]
|
#[cfg(target_os = "linux")]
|
||||||
return vec![
|
return vec![
|
||||||
|
patches::linux::libreoffice_writer_x11::patch(),
|
||||||
// TODO: all the terminals registered in the legacy version + libre office
|
// TODO: all the terminals registered in the legacy version + libre office
|
||||||
// + firefox
|
// + firefox
|
||||||
];
|
];
|
||||||
|
|
41
espanso/src/patch/patches/linux/libreoffice_writer_x11.rs
Normal file
41
espanso/src/patch/patches/linux/libreoffice_writer_x11.rs
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
/*
|
||||||
|
* This file is part of espanso.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019-2021 Federico Terzi
|
||||||
|
*
|
||||||
|
* espanso is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* espanso is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with espanso. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
use std::sync::Arc;
|
||||||
|
|
||||||
|
use crate::patch::patches::{PatchedConfig, Patches};
|
||||||
|
use crate::patch::PatchDefinition;
|
||||||
|
|
||||||
|
pub fn patch() -> PatchDefinition {
|
||||||
|
PatchDefinition {
|
||||||
|
name: module_path!().split(':').last().unwrap_or("unknown"),
|
||||||
|
is_enabled: || cfg!(target_os = "linux") && !super::util::is_wayland(),
|
||||||
|
should_patch: |app| app.class.unwrap_or_default().contains("libreoffice-writer"),
|
||||||
|
apply: |base, name| {
|
||||||
|
Arc::new(PatchedConfig::patch(
|
||||||
|
base,
|
||||||
|
name,
|
||||||
|
Patches {
|
||||||
|
key_delay: Some(Some(2)),
|
||||||
|
..Default::default()
|
||||||
|
},
|
||||||
|
))
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
22
espanso/src/patch/patches/linux/mod.rs
Normal file
22
espanso/src/patch/patches/linux/mod.rs
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
/*
|
||||||
|
* This file is part of espanso.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019-2021 Federico Terzi
|
||||||
|
*
|
||||||
|
* espanso is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* espanso is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with espanso. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
pub mod libreoffice_writer_x11;
|
||||||
|
|
||||||
|
mod util;
|
22
espanso/src/patch/patches/linux/util.rs
Normal file
22
espanso/src/patch/patches/linux/util.rs
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
/*
|
||||||
|
* This file is part of espanso.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019-2021 Federico Terzi
|
||||||
|
*
|
||||||
|
* espanso is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* espanso is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with espanso. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
pub fn is_wayland() -> bool {
|
||||||
|
cfg!(feature = "wayland")
|
||||||
|
}
|
|
@ -22,6 +22,9 @@ use espanso_config::config::{Backend, ToggleKey};
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
pub mod win;
|
pub mod win;
|
||||||
|
|
||||||
|
#[cfg(target_os = "linux")]
|
||||||
|
pub mod linux;
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
mod macros;
|
mod macros;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user