diff --git a/audiogame-manager.sh b/audiogame-manager.sh index 0c96e6c..e33a8f4 100755 --- a/audiogame-manager.sh +++ b/audiogame-manager.sh @@ -2346,13 +2346,17 @@ EOF sed -i 's/1024m/768m/g' "$WINEPREFIX/drive_c/Program Files/Mist World/mw.exe.vmoptions" cp "$WINEPREFIX/drive_c/Program Files/Mist World/"{mw.exe.vmoptions,update.exe.vmoptions} find "$WINEPREFIX/drive_c/Program Files/Mist World" -iname "nvdaControllerClient32.dll" -exec cp "$cache/nvda2speechd32.dll" "{}" \; + mkdir "$WINEPREFIX/drive_c/Program Files/Mist World/"{user,users} add_launcher 'c:\Program Files\Mist World\mw.exe' echo echo "If you do not have an account, There is a script in game-scripts to help." echo "Launch the game, press enter on create account, then drop into a console so the game window does not lose focus." echo "Change to the game-scripts directory and run" echo "./mist_world_account_creator.sh and follow the prompts." - echo "To login, type your email address, press tab, and type your password. Press enter to confirm." + echo + echo "To login, type your email address, press tab, and type your password." + echo "If you want to enable automatic login, press tab two times followed by space, then tab and enter." + echo "If you do not want to auto login, you can just press enter after typing your password." alert ;; "Monkey Business") diff --git a/speech/clipboard_reader.sh b/speech/clipboard_reader.sh index d0c489e..4c13cae 100755 --- a/speech/clipboard_reader.sh +++ b/speech/clipboard_reader.sh @@ -27,7 +27,7 @@ while pgrep -u "$USER" ^$1 &> /dev/null ; do if [[ -w "${socketFile}" ]]; then echo "<#APPEND#>$cliptext" | socat - UNIX-CLIENT:"${socketFile}" else - spd-say -w -r 50 -- "$cliptext" + spd-say -w -- "$cliptext" fi fi else @@ -37,7 +37,7 @@ while pgrep -u "$USER" ^$1 &> /dev/null ; do if [[ -w "${socketFile}" ]]; then echo "$cliptext" | socat - UNIX-CLIENT:"${socketFile}" else - spd-say -r 50 -- "$cliptext" + spd-say -- "$cliptext" fi fi fi