diff --git a/src-tauri/src/core/sysopt.rs b/src-tauri/src/core/sysopt.rs index b50ef9753bc79f70df6a89988818dd28260893df..919abf937d982713ab2fbc8146346d66e7d6ab42 100644 --- a/src-tauri/src/core/sysopt.rs +++ b/src-tauri/src/core/sysopt.rs @@ -1,5 +1,5 @@ use crate::{data::*, log_if_err}; -use anyhow::{bail, Result}; +use anyhow::{anyhow, bail, Result}; use auto_launch::{AutoLaunch, AutoLaunchBuilder}; use std::sync::Arc; use sysproxy::Sysproxy; @@ -133,30 +133,62 @@ impl Sysopt { let verge = data.verge.lock(); let enable = verge.enable_auto_launch.clone().unwrap_or(false); - if !enable { - return Ok(()); - } + let app_exe = current_exe()?; + let app_exe = dunce::canonicalize(app_exe)?; + let app_name = app_exe + .file_stem() + .and_then(|f| f.to_str()) + .ok_or(anyhow!("failed to get file stem"))?; - let app_exe = current_exe().unwrap(); - let app_exe = dunce::canonicalize(app_exe).unwrap(); - let app_name = app_exe.file_stem().unwrap().to_str().unwrap(); - let app_path = app_exe.as_os_str().to_str().unwrap(); + let app_path = app_exe + .as_os_str() + .to_str() + .ok_or(anyhow!("failed to get app_path"))? + .to_string(); // fix issue #26 #[cfg(target_os = "windows")] let app_path = format!("\"{app_path}\""); - #[cfg(target_os = "windows")] - let app_path = app_path.as_str(); + + // use the /Applications/Clash Verge.app path + #[cfg(target_os = "macos")] + let app_path = (|| -> Option<String> { + let path = std::path::PathBuf::from(&app_path); + let path = path.parent()?.parent()?.parent()?; + let extension = path.extension()?.to_str()?; + match extension == "app" { + true => Some(path.as_os_str().to_str()?.to_string()), + false => None, + } + })() + .unwrap_or(app_path); let auto = AutoLaunchBuilder::new() .set_app_name(app_name) - .set_app_path(app_path) + .set_app_path(&app_path) .build()?; - // fix issue #26 - auto.enable()?; self.auto_launch = Some(auto); + let auto = self.auto_launch.as_ref().unwrap(); + + // macosæ¯æ¬¡å¯åŠ¨éƒ½æ›´æ–°ç™»å½•é¡¹ï¼Œé¿å…é‡å¤è®¾ç½®ç™»å½•é¡¹ + #[cfg(target_os = "macos")] + { + let _ = auto.disable(); + if enable { + auto.enable()?; + } + } + + #[cfg(not(target_os = "macos"))] + { + match enable { + true => auto.enable()?, + false => auto.disable()?, + }; + } + Ok(()) }