diff --git a/waycast-gtk/src/main.rs b/waycast-gtk/src/main.rs index 50ade74..2cbbca0 100644 --- a/waycast-gtk/src/main.rs +++ b/waycast-gtk/src/main.rs @@ -14,10 +14,14 @@ fn main() { app.connect_activate(|app| { let mut file_search_plugin = waycast_plugins::file_search::new(); - if let Err(e) = file_search_plugin.add_search_path("/home/javi/working-files/DJ Music/") { eprintln!("{}", e) } + if let Err(e) = file_search_plugin.add_search_path("/home/javi/working-files/DJ Music/") { + eprintln!("{}", e) + } let mut project_plugin = waycast_plugins::projects::new(); - if let Err(e) = project_plugin.add_search_path("/home/javi/projects") { eprintln!("{}", e) } + if let Err(e) = project_plugin.add_search_path("/home/javi/projects") { + eprintln!("{}", e) + } // Create the core launcher let launcher = WaycastLauncher::new()