Ensure a single instance of your tauri app is running.
This plugin requires a Rust version of at least 1.65
There are three general methods of installation that we can recommend.
Install the Core plugin by adding the following to your Cargo.toml
file:
src-tauri/Cargo.toml
```toml [dependencies] tauri-plugin-single-instance = "2.0.0-alpha"
tauri-plugin-single-instance = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" } ```
First you need to register the core plugin with Tauri:
src-tauri/src/main.rs
```rust use tauri::{Manager};
struct Payload {
args: Vec
fn main() { tauri::Builder::default() .plugin(tauripluginsingleinstance::init(|app, argv, cwd| { println!("{}, {argv:?}, {cwd}", app.packageinfo().name);
app.emit_all("single-instance", Payload { args: argv, cwd }).unwrap();
}))
.run(tauri::generate_context!())
.expect("error while running tauri application");
} ```
PRs accepted. Please make sure to read the Contributing Guide before making a pull request.
Code: (c) 2015 - Present - The Tauri Programme within The Commons Conservancy.
MIT or MIT/Apache 2.0 where applicable.