feat(安装管理器): 添加安装参数以禁用桌面快捷方式和使用原生安装

添加 --no-create-desktop-entry 和 --native 参数以避免创建桌面快捷方式并确保使用原生安装方式
This commit is contained in:
2026-04-12 21:14:06 +08:00
parent c46bb03e3f
commit 9244708b90

View File

@@ -263,6 +263,8 @@ ipcMain.on("queue-install", async (event, download_json) => {
"ssinstall",
`${downloadDir}/${filename}`,
"--delete-after-install",
"--no-create-desktop-entry",
"--native",
);
} else {
execParams.push("aptss", "install", "-y", pkgname);