aboutsummaryrefslogtreecommitdiff
path: root/src-tauri/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src-tauri/src/lib.rs')
-rw-r--r--src-tauri/src/lib.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs
index 9a3cd471..61b4fb65 100644
--- a/src-tauri/src/lib.rs
+++ b/src-tauri/src/lib.rs
@@ -288,3 +288,14 @@ pub fn launch_northstar(game_install: GameInstall) -> Result<String, String> {
get_host_os()
))
}
+
+use sysinfo::{System, SystemExt};
+pub fn check_origin_running() -> bool {
+ let s = System::new_all();
+ for _process in s.processes_by_name("Origin.exe") {
+ // check here if this is your process
+ // dbg!(process);
+ return true;
+ }
+ false
+}