diff --git a/src/gui.rs b/src/gui.rs index b5dbb5d..4052705 100644 --- a/src/gui.rs +++ b/src/gui.rs @@ -3,6 +3,9 @@ use gtk::{ Application, ApplicationWindow, Box as GtkBox, Button, FileChooserAction, FileChooserDialog, Image, Orientation, PolicyType, ResponseType, ScrolledWindow, }; +use std::process::Command; +use std::{process::{Command, Child}, thread}; +use std::sync::{Arc, Mutex}; use walkdir::WalkDir; const APP_ID: &str = "org.gtk_rs.Example";