mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
add toggle cli command to show/hide kunkun (#176)
* add toggle cli command * cleaner * keep unused imports
This commit is contained in:
parent
4d90e2cf29
commit
ec951bfc80
@ -72,11 +72,22 @@ pub fn run() {
|
|||||||
}
|
}
|
||||||
let shell_unlocked = true;
|
let shell_unlocked = true;
|
||||||
builder = builder
|
builder = builder
|
||||||
.plugin(tauri_plugin_single_instance::init(|app, args, cwd| {
|
.plugin(tauri_plugin_single_instance::init(|app, args, _cwd| {
|
||||||
let _ = app
|
let window = app.get_webview_window("main").expect("no main window");
|
||||||
.get_webview_window("main")
|
|
||||||
.expect("no main window")
|
// if toggle is passed, we want to show/hide the main window
|
||||||
.set_focus();
|
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(
|
.plugin(
|
||||||
tauri_plugin_log::Builder::new()
|
tauri_plugin_log::Builder::new()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user