11 lines
337 B
Bash
11 lines
337 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
export DISPLAY=${DISPLAY:-:0}
|
||
|
export WINEARCH=win32
|
||
|
export WINEPREFIX=~/.local/wine/${1:-nvda}
|
||
|
|
||
|
winetricks msaa riched20 riched30 win7
|
||
|
|
||
|
[[ -f ~/Downloads/nvda_2017.3.exe ]] || wget -O ~/Downloads/nvda_2017.3.exe https://www.nvaccess.org/download/nvda/releases/2017.3/nvda_2017.3.exe
|
||
|
wine ~/Downloads/nvda_2017.3.exe
|