Last one for the night

This commit is contained in:
Javier Feliz 2025-09-06 01:09:14 -04:00
parent 63e3860179
commit b90f65d713

View File

@ -14,10 +14,14 @@ fn main() {
app.connect_activate(|app| { app.connect_activate(|app| {
let mut file_search_plugin = waycast_plugins::file_search::new(); 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(); 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 // Create the core launcher
let launcher = WaycastLauncher::new() let launcher = WaycastLauncher::new()