- Buy Tametsi on Steam and install it with the Linux client.
- Go to the Tametsi install directory.
$ cd $HOME/.steam/steam/steamapps/common/Tametsi/ - Unzip
tametsi.exe.$ file tametsi.exe tametsi.exe: Zip archive, with extra data prepended $ unzip tametsi.exe -d tametsi/ - Create a jar from the files we extracted, making sure to update the manifest.
$ cd tametsi $ jar cfm ../tametsi.jar META-INF/MANIFEST.MF * - Clean up all the files we extracted.
$ cd .. $ rm -rf tametsi/ - Create an executable script to launch the game with the jar.
$ echo 'cd $(dirname $0)' > tametsi.run $ echo 'java -jar tametsi.jar 2> /dev/null' >> tametsi.run $ chmod a+x tametsi.run - Now launch the game!
$ ./tametsi.run
Created
July 11, 2024 10:16
-
-
Save mesmere/2ffa054259eec68070deee280a87e1a8 to your computer and use it in GitHub Desktop.
Run Tametsi natively without Wine
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment