diff --git a/src-tauri/src/fs_extra.rs b/src-tauri/src/fs_extra.rs index 6c4331236..d68666219 100644 --- a/src-tauri/src/fs_extra.rs +++ b/src-tauri/src/fs_extra.rs @@ -44,7 +44,10 @@ pub async fn reveal_in_file_explorer(path: &str) -> Result<(), String> { .spawn() .expect("Failed to open finder"); } else { - // TODO: Linux + Command::new("xdg-open") + .args([path]) + .spawn() + .expect("Failed to open file explorer"); } Ok(())