#!/bin/bash echo "Menu" echo " space = play" echo " 1 = Forgotten Hope" echo " c = winecfg" echo " w = winetricks" echo " r = regedit" echo " k = kill running wine" echo " " old_tty_settings=$(stty -g) # Save old settings (why?). stty -icanon Keypress=$(head -c1) cd "$HOME/winebottles/bf2/drive_c/Program Files/EA GAMES/Battlefield 2/" if [ "$Keypress" = " " ]; then env WINEPREFIX="/home/matthew/winebottles/bf2" WINEDEBUG=-all wine BF2.exe fi if [ "$Keypress" = "1" ]; then env WINEPREFIX="/home/matthew/winebottles/bf2" WINEDEBUG=-all wine FH2.exe fi if [ "$Keypress" = "c" ]; then env WINEPREFIX="/home/matthew/winebottles/bf2" winecfg fi if [ "$Keypress" = "k" ]; then env WINEPREFIX="/home/matthew/winebottles/bf2" wineserver -k fi if [ "$Keypress" = "w" ]; then env WINEPREFIX="/home/matthew/winebottles/bf2" ~/winetricks/./winetricks fi if [ "$Keypress" = "r" ]; then env WINEPREFIX="/home/matthew/winebottles/bf2" regedit fi exit 0