blob: 16974f091cec080cbfb72e023f9ced4ea9a9b7eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
# export necessary environment variables
export WINEARCH=win32 WINEPREFIX="$HOME/.resource-hacker/wine"
if [ ! -d "$HOME/.resource-hacker" ]; then
# create the directory for the wine prefix
mkdir -p "$HOME/.resource-hacker/wine" || exit 1
# make a symlink to the executable
ln -s /usr/share/resource-hacker/ResourceHacker.exe "$HOME/.resource-hacker/resource-hacker" || exit 1
fi
# run the executable file
WINEDEBUG=-all wine "$HOME/.resource-hacker/resource-hacker" "$@"
|