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
#!/usr/bin/env sh | |
# SPDX-License-Identifier: Beerware | |
set -e | |
# Script to automate downloading and installing the latest version of MusicBee | |
# If anything goes wrong/breaks, let me know so I can fix it! | |
export WINEPREFIX="$HOME/.local/share/wineprefixes/MusicBee/" | |
export WINEDLLOVERRIDES="mscoree,mshtml=" # We don't need wine-mono installed, no need to give a warning over it. https://bugs.winehq.org/show_bug.cgi?id=47316#c4 | |
export WINEDEBUG=-all # Don't print any debugging messages for wine |