#!/bin/sh EVECONF=$HOME/.config/CCP/EVE.conf EVEDIR=$HOME/.local/lib/EVE UCW=$(grep UseCustomWine $EVECONF | cut -d= -f2) if [ "x$UCW" = "xtrue" ] ;then WINEPATH=$(grep CustomWinePath $EVECONF | cut -d= -f2) WINEPATH=${WINEPATH%/*} else echo "$(basename $0): Error: Custom wine not set!" exit 1 fi env WINEPREFIX=$HOME/.local/lib/EVE/SharedCache/wineenv \ WINEDEBUG=-all \ WINEDLLOVERRIDES="mscoree,mshtml,winemenubuilder.exe=d" \ $WINEPATH/regedit "$@"