xaber1488 wrote:
James McKenzie wrote:
xaber1488 wrote:
And how can I reset the changes done with winetricks? Simply removing the libraries overrides? And to apply them again, should I use again the sh winetricks comand?
Open a terminal session
code:
cd $HOME
mv .wine{,.backup}
wine notepad
Run winecfg and note any overrides at this point.
Run winetricks with all of the changes you need to make your program run
Run winecfg and take a screenshot of the overrides. Post to the
Applications Database entry for your program. If there is not one,
create it and add all that you did to get the program to run.
James McKenzie
what does the mv .wine{,.backup} command do? Is that to delete the winetricks changes?
This is a short cut for the following command:
mv .wine .wine.backup
It uses some of the functionality of the regular expressions command set.
James McKenzie