Fix: linux app launch (#190)

* fix(desktop): update version to 0.1.26 and enhance app execution handling for Linux

* fix(desktop): remove redundant app path display in AppsCmds component
This commit is contained in:
Huakun 2025-02-22 05:36:53 -05:00 committed by GitHub
parent 52919b8d2f
commit 330678cb45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@kksh/desktop",
"version": "0.1.25",
"version": "0.1.26",
"description": "",
"type": "module",
"scripts": {

View File

@ -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}