diff --git a/apps/desktop/package.json b/apps/desktop/package.json index daaa5f9..3bb6b3f 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@kksh/desktop", - "version": "0.1.25", + "version": "0.1.26", "description": "", "type": "module", "scripts": { diff --git a/apps/desktop/src/lib/components/main/AppsCmds.svelte b/apps/desktop/src/lib/components/main/AppsCmds.svelte index 4b8d56c..80445a2 100644 --- a/apps/desktop/src/lib/components/main/AppsCmds.svelte +++ b/apps/desktop/src/lib/components/main/AppsCmds.svelte @@ -6,7 +6,7 @@ import { convertFileSrc } from "@tauri-apps/api/core" import * as os from "@tauri-apps/plugin-os" import { toast } from "svelte-sonner" - import { open } from "tauri-plugin-shellx-api" + import { executeBashScript, open } from "tauri-plugin-shellx-api" const platform = os.platform() let { apps }: { apps: AppInfo[] } = $props() @@ -23,8 +23,16 @@ } else { toast.error("No executable path found for this app") } - } else { + } else if (platform === "macos") { open(app.app_desktop_path) + } else if (platform === "linux") { + if (app.app_path_exe) { + executeBashScript(app.app_path_exe) + } else { + toast.error("No executable path found for this app") + } + } else { + toast.error("Unsupported platform") } }} value={app.name}