Skip to content

Instantly share code, notes, and snippets.

View Raizelian's full-sized avatar
🎯
Focusing

raizelian Raizelian

🎯
Focusing
View GitHub Profile
@Raizelian
Raizelian / run_exe_in_wine__applescript.scpt
Last active October 5, 2017 13:49
[Applescript] Run .exe in Wine
# run Test.exe in Wine
# Wine is in the "Applications" folder
# alternative path: /usr/local/bin/wine
tell application "Terminal"
do script "/Applications/Wine.app/Contents/MacOS/wine ~/.wine/drive_c/Program\\ Files/Test/test.exe"
end tell