#minimize other windows
4 messages · Page 1 of 1 (latest)
You gotta use system APIs, on Windows, you can EnumWindows function and then call ShowWindow with SW_MINIMIZE on each window.
https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-enumwindows
https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-showwindow
as for other platforms, I am not sure tbh
this falls outside of the scope of tauri unfortunately so you are a bit on your own here.