#!/bin/dash
# ROX integration
if file -b "$1" | grep -q x86-64; then
	wine64 start.exe /Unix "$@"
else
	wine start.exe /Unix "$@"
fi
