8 lines
182 B
Bash
Executable file
8 lines
182 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo 'initializing wine...'
|
|
wineboot -i
|
|
echo 'copying registy values...'
|
|
wine regedit $WINEPREFIX/drive_c/registry.reg
|
|
echo 'starting...'
|
|
exec wine /app/promt-puppy.exe
|