blob: d12db1ca02a1f9714694e08c4fd38150a6495af7 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
export WINEPREFIX="$HOME"/.grid2019/wine
if [ ! -d "$HOME"/.grid2019 ] ; then
mkdir -p "$HOME"/.grid2019/wine
wineboot -u
fi
cd /opt/grid2019
/usr/bin/wine Grid_dx12.exe
|