diff --git a/apps/desktop/src-tauri/src/lib.rs b/apps/desktop/src-tauri/src/lib.rs index 8ccf218..c30f386 100644 --- a/apps/desktop/src-tauri/src/lib.rs +++ b/apps/desktop/src-tauri/src/lib.rs @@ -72,11 +72,22 @@ pub fn run() { } let shell_unlocked = true; builder = builder - .plugin(tauri_plugin_single_instance::init(|app, args, cwd| { - let _ = app - .get_webview_window("main") - .expect("no main window") - .set_focus(); + .plugin(tauri_plugin_single_instance::init(|app, args, _cwd| { + let window = app.get_webview_window("main").expect("no main window"); + + // if toggle is passed, we want to show/hide the main window + if args.get(1).map_or(false, |arg| arg == "toggle") { + if window.is_visible().unwrap_or(false) { + log::info!("hiding main window"); + window.hide().unwrap(); + } else { + log::info!("showing main window"); + window.show().unwrap(); + window.set_focus().unwrap(); + }; + } else { + let _ = window.set_focus(); + } })) .plugin( tauri_plugin_log::Builder::new()