diff --git a/wino b/wino index 616dc87..6377d39 100755 --- a/wino +++ b/wino @@ -14,7 +14,7 @@ use File::Path qw(make_path); # The WINO_DIR is the directory wino will store all of its containers # Do not include a / at the end of this, or things could break... -my $WINO_DIR = '~/.wino'; +my $WINO_DIR = '~/opt/wino'; ### No more user-editable data below @@ -33,7 +33,7 @@ my $winecmd = 'wine'; my $uname = `uname -i`; chomp $uname; -if ($uname eq "x86_64") { $winecmd = 'wine32'; } +if ($uname eq "x86_64" && -x "/usr/bin/wine32") { $winecmd = 'wine32'; } foreach (@ARGV) {