- Create placeholder icon.png (32x32, 128x128, 256x256) for Tauri build - Remove unused from lib.rs
19 lines
969 B
Rust
19 lines
969 B
Rust
pub mod config { pub mod libdir {
|
|
pub const xext: Option<&'static str> = Some("/usr/lib");
|
|
pub const gl: Option<&'static str> = Some("/usr/lib");
|
|
pub const xcursor: Option<&'static str> = Some("/usr/lib");
|
|
pub const xxf86vm: Option<&'static str> = Some("/usr/lib");
|
|
pub const xft: Option<&'static str> = Some("/usr/lib");
|
|
pub const xinerama: Option<&'static str> = Some("/usr/lib");
|
|
pub const xi: Option<&'static str> = Some("/usr/lib");
|
|
pub const x11: Option<&'static str> = Some("/usr/lib");
|
|
pub const xlib_xcb: Option<&'static str> = Some("/usr/lib");
|
|
pub const xmu: Option<&'static str> = Some("/usr/lib");
|
|
pub const xrandr: Option<&'static str> = Some("/usr/lib");
|
|
pub const xtst: Option<&'static str> = Some("/usr/lib");
|
|
pub const xrender: Option<&'static str> = Some("/usr/lib");
|
|
pub const xpresent: Option<&'static str> = Some("/usr/lib");
|
|
pub const xscrnsaver: Option<&'static str> = Some("/usr/lib");
|
|
pub const xt: Option<&'static str> = Some("/usr/lib");
|
|
}
|
|
} |