Features: - Direct Input Engine (no pre-edit buffer, no underline) - Telex + VNI input methods - Auto-restore English words - ESC undo (strip tones) - Smart per-app memory - Macro expansion (ko→không, dc→được, vs→với, lm→làm) - Triple backend: uinput, X11 XTEST, Wayland IM - Hot-reload config - 148 tests passing Packaging: - .deb package - AppImage support - AUR PKGBUILD - Flatpak manifest - Systemd user service
10 lines
267 B
Rust
10 lines
267 B
Rust
fn main() {
|
|
#[cfg(feature = "x11")]
|
|
{
|
|
println!("cargo:rustc-link-lib=X11");
|
|
println!("cargo:rustc-link-lib=Xtst");
|
|
|
|
if let Ok(_) = pkg_config::probe_library("x11") {}
|
|
if let Ok(_) = pkg_config::probe_library("xtst") {}
|
|
}
|
|
}
|