From 728b24f9b480aa000fdc3d4fc08beaf3c747aa8b Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Tue, 15 Nov 2022 14:35:49 -0500 Subject: [PATCH] Quick script to install nvda, specify bottle as argument, default is nvda. --- speech/install_nvda.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 speech/install_nvda.sh diff --git a/speech/install_nvda.sh b/speech/install_nvda.sh new file mode 100755 index 0000000..579d45b --- /dev/null +++ b/speech/install_nvda.sh @@ -0,0 +1,10 @@ +#!/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