The forum

World of Tanks Replays

Author Replies
RJ_GamingBoss Monday 12 May 2014 at 18:14
RJ_GamingBossAnonymous

I want to view my World of tanks replay but when I choose what program I want to open it with (As in set the default Program) WorldofTanks.exe does not show up because Linux doesn't open it as a program but instead uses Wine. Is there some way I can view my replays on Linux?
petch Monday 12 May 2014 at 19:26
petch

you can try to associate the files with
playonlinux --run "World Of Tanks" %f
If you're allowed to; Otherwise, you'll have to create a small wrapper script like
#!/bin/bash
exec playonlinux --run "World Of Tanks" "$@"

chmod +x it and associate the extension to this wrapper
RJ_GamingBoss Monday 12 May 2014 at 21:54
RJ_GamingBossAnonymous

you can try to associate the files with
playonlinux --run "World Of Tanks" %f
If you're allowed to; Otherwise, you'll have to create a small wrapper script like
[code=console]
#!/bin/bash
exec playonlinux --run "World Of Tanks" "$@"
[/code]
chmod +x it and associate the extension to this wrapper

Quote from petch

I am still new to Linux so I am not sure how to associate the file with the WoT.exe file.