Last active
August 30, 2016 06:41
-
-
Save Dinir/70273bbf93a446b2e4558856d9b5bfeb to your computer and use it in GitHub Desktop.
This script file run Copy Kitty in a single click I hope.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export WINEPREFIX=$HOME/.wine32 WINEARCH=win32 | |
winetricks xna40 | |
(cd Application\ Files/kitty*; wine kitty.exe) | |
set -e WINEPREFIX && set -e WINEARCH | |
# Copy Kitty is a great game and you can download the demo in https://entanma.itch.io/copy-kitty . | |
# | |
# Install winetricks first before executing this script. `sudo pacman -S winetricks` will do in Arch. | |
# Or you can visit http://winetricks.org/winetricks . | |
# | |
# WINEPREFIX can be anything. I made it `$HOME/.wine32` | |
# because the default prefix path is `~/.wine` and I thought having similar path name is good. | |
# But you can't use `~` in the value: use `$HOME` instead. | |
# | |
# Make a new file in the root game folder, and copy this entire script into the file. | |
# Mark the file as executable (`chmod u+x kittyLinux.sh`) and execute. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment