Created
April 6, 2021 04:11
-
-
Save tiagovla/fafb8c12c7206f0f318c769788173c44 to your computer and use it in GitHub Desktop.
Script used to install grammarly using wine on linux.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PREFIX="$HOME/.grammarly" | |
GRAMMARLY_URL="https://download-editor.grammarly.com/windows/GrammarlySetup.exe" | |
grammarly_install(){ | |
WINEARCH=win32 WINEPREFIX=$PREFIX winetricks --force dotnet452 | |
cd $PREFIX | |
wget $GRAMMARLY_URL | |
WINEPREFIX=$PREFIX winetricks win7 | |
wineserver -k | |
WINEPREFIX=$PREFIX wine "$PREFIX/GrammarlySetup.exe" | |
} | |
grammarly_install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@OakarOo I uploaded the old version here. I'm using a docker version.