summarylogtreecommitdiffstats
path: root/run
diff options
context:
space:
mode:
authorqaz2020-05-08 07:05:42 +0800
committerqaz2020-05-08 07:05:42 +0800
commit02731bc68a10e134dfe915f0162cd757aee1de71 (patch)
treeeb0fed8ae44d01b98267d010797d74342ab6e8f8 /run
parenta08b2089420ef38af0bc9a8a129d370eabf05f09 (diff)
downloadaur-thunder-mini.tar.gz
Fix license, custom wine opinion
Diffstat (limited to 'run')
-rw-r--r--run18
1 files changed, 0 insertions, 18 deletions
diff --git a/run b/run
deleted file mode 100644
index d4bfdd359bdf..000000000000
--- a/run
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-
-export WINEPREFIX=~/.wine-thunder-mini
-export WINEARCH=win32
-export WINEDEBUG=-all
-
-apphome="$(dirname "$(readlink -f "$0")")"
-workhome="$WINEPREFIX/drive_c/thunder-mini"
-
-if [ ! -e "${workhome}" ]; then
- mkdir -p "$WINEPREFIX/drive_c"
- ln -s "/usr/share/thunder-mini" "${workhome}"
-fi
-
-shellexe="$1"
-shift
-exec wine "C:\\thunder-mini\\Bin\\ThunderMini.exe" "$@"
-