From 1465450a8747b8d5d896bfcb1c4d58c3007cb74f Mon Sep 17 00:00:00 2001 From: darkelaina <3550664-tretrauit@users.noreply.gitlab.com> Date: Tue, 21 Dec 2021 13:43:15 +0000 Subject: [PATCH] Add new file --- Apps/BlockTheSpot/install.bash | 59 ++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 Apps/BlockTheSpot/install.bash diff --git a/Apps/BlockTheSpot/install.bash b/Apps/BlockTheSpot/install.bash new file mode 100644 index 0000000..b2b1b41 --- /dev/null +++ b/Apps/BlockTheSpot/install.bash @@ -0,0 +1,59 @@ +#!/bin/bash + +declare -a deps=("curl" "unzip" "rm") +declare -a patchfiles=("chrome_elf.dll" "config.ini") +SPOTIFY="$WINEPREFIX/drive_c/users/$(whoami)/AppData/Roaming/Spotify/" +TMPDIR=$(mktemp -d) + +if (( $EUID == 0 )); then + echo "Do not run this script as root." + exit +fi + +[[ -z "${WINEPREFIX}" ]] && WINEPREFIX="$HOME/.wine" || WINEPREFIX="${WINEPREFIX}" + +echo "BlockTheSpot install script for Wine" +echo "BlockTheSpot: https://github.com/mrpond/BlockTheSpot/" +echo "Current Wineprefix: $WINEPREFIX" +cd $TMPDIR + +for v in "${deps[@]}" +do + if ! [ -x /usr/bin/$v ]; then + echo "Dependency '$v' not found" + exit + fi +done + +if ! [ -d "$SPOTIFY" ]; then + echo "Spotify not found, make sure you're using correct wineprefix..." + exit +fi + +echo "Downloading BlockTheSpot..." +curl -OL "https://github.com/mrpond/BlockTheSpot/releases/latest/download/chrome_elf.zip" + +echo "Extracting BlockTheSpot..." +unzip -d chrome_elf chrome_elf.zip + +if [ -f "$SPOTIFY/chrome_elf.dll" ]; then + read -p "Do you want to backup Spotify files? [Y/n] " -n 1 -r + echo # (optional) move to a new line + if [[ $REPLY =~ ^[Yy]$ || -z $REPLY ]] + then + echo "Backuping files..." + mv "$SPOTIFY/chrome_elf.dll" "$SPOTIFY/chrome_elf_bak.dll" + else + [[ "$0" = "$BASH_SOURCE" ]] && exit 1 || return 1 # handle exits from shell or function but don't exit interactive shell + fi +fi + +WINEPREFIX=$WINEPREFIX wineserver -k + +echo "Patching Spotify..." +for v in "${patchfiles[@]}" +do + cp "./chrome_elf/$v" "$SPOTIFY/$v" +done + +echo "Patching completed."