mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-03 22:26:43 +00:00
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:
parent
52919b8d2f
commit
330678cb45
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@kksh/desktop",
|
||||
"version": "0.1.25",
|
||||
"version": "0.1.26",
|
||||
"description": "",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -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}
|
||||
|
Loading…
x
Reference in New Issue
Block a user