Skip to content

Instantly share code, notes, and snippets.

@Dinir
Last active August 30, 2016 06:41
Show Gist options
  • Save Dinir/70273bbf93a446b2e4558856d9b5bfeb to your computer and use it in GitHub Desktop.
Save Dinir/70273bbf93a446b2e4558856d9b5bfeb to your computer and use it in GitHub Desktop.
This script file run Copy Kitty in a single click I hope.
#!/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