From b90f65d7130c15f7c84ece40cce91f0927c88b79 Mon Sep 17 00:00:00 2001 From: Javier Feliz Date: Sat, 6 Sep 2025 01:09:14 -0400 Subject: [PATCH] Last one for the night --- waycast-gtk/src/main.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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()