I'm trying to create a launcher (shortcut) for winetricks (among other things wine-related) in xfce with my specific prefix.
In "command" part I have tried putting the following:
WINEPREFIX=~/.wineGames winetricks
WINEPREFIX='$HOME/.wineGames' winetricks
WINEPREFIX="$HOME/.wineGames" winetricks
WINEPREFIX=/home/myusername/.wineGames winetricks
WINEPREFIX="/home/myusername/.wineGames" winetricks
Any of these ends with error (or variant of):
"Failed to execute command "WINEPREFIX=~/.wineGames winetricks". Failed to execute child process "WINEPREFIX=~/.wineGames" (No such file or directory)"
I have to note that the first command absolutely DOES work, and works correctly when launcher from terminal. What am I doing wrong?