add toggle cli command to show/hide kunkun (#176)

* add toggle cli command

* cleaner

* keep unused imports
This commit is contained in:
Luca Giannini 2025-02-21 12:28:08 +01:00 committed by GitHub
parent 4d90e2cf29
commit ec951bfc80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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()