mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +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;
|
||||
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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user