Skip to content

Instantly share code, notes, and snippets.

@tiagovla
Created April 6, 2021 04:11
Show Gist options
  • Save tiagovla/fafb8c12c7206f0f318c769788173c44 to your computer and use it in GitHub Desktop.
Save tiagovla/fafb8c12c7206f0f318c769788173c44 to your computer and use it in GitHub Desktop.
Script used to install grammarly using wine on linux.
#!/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
@tiagovla
Copy link
Author

tiagovla commented Jan 8, 2023

@OakarOo
Copy link

OakarOo commented Jan 19, 2023

Download link isn't working.

@tiagovla
Copy link
Author

@smabbasht here

@OakarOo I uploaded the old version here. I'm using a docker version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment