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 bash | |
# Download VMware Workstation for Linux without a Broadcom account | |
# | |
# Use '-k' to keep the download file compressed, exiting after download. | |
# Use '-v <Version>' to specify desired version (12.0.0 or higher required). | |
BASE_URL="https://softwareupdate-prod.broadcom.com/cds/vmw-desktop/" | |
CDN_MIRROR="softwareupdate-prod.broadcom.com:443:softwareupdate-prod.broadcom.com.cdn.cloudflare.net:443" |
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
<# | |
.SYNOPSIS | |
Download VMware Workstation for Windows without a Broadcom Account | |
.DESCRIPTION | |
This script fetches available VMware Workstation versions from Broadcom's update servers, | |
allows the user to select a version in a two-step process (base, then full), and downloads | |
the installer using a Cloudflare CDN mirror. It then extracts the installer from the downloaded .tar archive. | |
.PARAMETER KeepCompressed | |
If specified, the script will not extract the .exe from the downloaded .tar file. | |
.PARAMETER Version |
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 bash | |
# Download VMware Fusion for macOS without a Broadcom account. | |
# | |
# This script allows you to download various versions of VMware Fusion for | |
# different architectures by parsing available metadata and downloading from Cloudflare CDN. | |
# | |
# Only builds v8.0.0 - v13.6.3 are supported (for now) | |
# | |
# Use '-k' to keep the download file compressed, exiting after download. |
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
@echo off | |
:: This script parses High-Logic MainType 12.x reg info directly to the registry | |
:: Useful if unable to activate in MainType.exe -- reg data was revoked after going online, 64-bit activation issues, etc | |
setlocal EnableDelayedExpansion | |
echo( | |
echo MainType 12.x Reg Parser by jetfir3 | |
echo Shout out RadiXX11 for the original keygen | |
:: https://radixx11rce3.blogspot.com/2023/09/high-logic-products-keygen-11.html |
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 bash | |
# Uninstallify -- remove Spotify + app/cache data | |
case $(uname | tr '[:upper:]' '[:lower:]') in | |
darwin*) platformType='macOS' ;; | |
*) platformType='Linux' ;; | |
esac | |
command pgrep [sS]potify 2>/dev/null | xargs kill -9 2>/dev/null |
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 bash | |
# The following script can run as a cron job to auto-update Spotify/SpotX-Bash | |
# Only "Debian-based" Linux distros using APT are supported | |
# Line #7 can be customized to set SpotX-Bash arguments | |
params="-h" | |
# Check for APT dependency and set default deb install location | |
command -v apt >/dev/null || { echo -e "Error: Debian-based Linux distro with APT support is required" >&2; exit 1; } |
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 bash | |
# The following script can run as a cron job to auto-update Spotify/SpotX-Bash | |
# Lines #6 and #7 can be customized to set Spotify.app location and SpotX-Bash arguments | |
appDir="/Applications/" | |
params="-Bd" | |
# Get macOS version | |
macOSVer=$(sw_vers -productVersion) |
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 bash | |
# Temporarily enable developer mode for the Spotify desktop client on Linux and macOS. | |
showHelp () { | |
echo -e \ | |
"Usage: ./tmpdevmodify.sh [option]\n | |
Options: | |
-c, --clearcache Clear Spotify app cache | |
-d, --debug Add Debug Tools to user dropdown menu |