diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index b37a903..9da8277 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -2,5 +2,15 @@ #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] fn main() { + #[cfg(target_os = "linux")] + { + if std::path::Path::new("/dev/dri").exists() + && std::env::var("WAYLAND_DISPLAY").is_err() + && std::env::var("XDG_SESSION_TYPE").unwrap_or_default() == "x11" + { + std::env::set_var("WEBKIT_DISABLE_DMABUF_RENDERER", "1"); + } + } + handy_app_lib::run() }