Maybe I misunderstand the use case but when I move a window, I would expect to see a log:
pub fn run() {
tauri::Builder::default()
.plugin(tauri_plugin_shell::init())
.setup(|app| {
#[cfg(all(desktop))]
app.handle()
.listen_workspace("NSWindowDidMoveNotification", |app_handle| {
println!("The window moved!");
});
Ok(())
})
.invoke_handler(tauri::generate_handler![greet])
.run(tauri::generate_context!())
.expect("error while running tauri application");
}
Are there some notifications this just doesn't work with?