1 2 3 4 5 6 7 8 9 10
mod x11_api; use crate::{PlatformApi, Result}; use x11_api::X11Api; pub fn setup() -> Result<impl PlatformApi> { X11Api::new() } pub const DEFAULT_SHELL: &str = "/bin/sh";