blob: 7000170bd3146fe9c20e865d5f56ea10085e932f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
# Copyright (C) 2020 Deepin, Inc.
#
# Author: RTX3090 <QQ482961502@gmail.com>
BOTTLENAME="Deepin-danmoshui"
APPVER="5.7.9"
EXEC_PATH="c:/Program Files/danmoshui/danmoshui.exe"
START_SHELL_PATH="/opt/deepinwine/tools/run_v4.sh"
export MIME_TYPE=""
export DEB_PACKAGE_NAME="deepin-wine-danmoshui"
export APPRUN_CMD="deepin-wine6-stable"
if [ -n "$EXEC_PATH" ];then
$START_SHELL_PATH $BOTTLENAME $APPVER "$EXEC_PATH" "$@"
else
$START_SHELL_PATH $BOTTLENAME $APPVER "uninstaller.exe" "$@"
fi
|