ingleav626-art/better-dsh-webui-launcher ↗★ 0
better-dsh-webui-launcher
dsh plugin (Windows): desktop shortcut that launches dsh web silently (hidden console) and auto-opens the browser; port-aware reconnect; settings UI section.
AI 분석
核心用途是优化 Windows 下的启动体验。适合不想看到黑窗口命令行、希望像普通桌面软件一样一键启动 DSH 的 Windows 用户。
설치
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:ingleav626-art/better-dsh-webui-launcher配置
cordis.patch.yml(或 profile 的 patch 层覆盖):
- id: better-launcher
config:
# 快捷方式双击后执行的启动命令(cmd 中运行,依赖 PATH 里的 dsh)
launchCommand: dsh --profile web
# 是否自动打开浏览器(仅快捷方式启动且带 DSH_LAUNCHER=1 时)
autoOpen: true
# 快捷方式名称(不含扩展名)
shortcutName: DSH WebUI
# 快捷方式已存在时是否强制覆盖
force: false
# 端口探测端口(需与 webserver 端口一致)
port: 3080
# 是否启用系统托盘
tray: true
# 打开方式:app(--app 独立窗口,默认)| new-window(独立窗口)| default(浏览器默认行为)
openMode: app