#remove app name from tray in OS X?
1 messages · Page 1 of 1 (latest)
After initializing your app with app.setup(...).build(...).expect(...), add this to your Rust code.
// #[cfg(target_os = "macos")]
app.set_activation_policy(ActivationPolicy::Accessory);
The activation policy tells macOS to treat this as a tray/spotlight app.
Cool thank you much appreciated 🙏
No worries, happy building!