0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2024-12-23 22:22:59 +03:00

Repack fix

This commit is contained in:
Andrey Onishchenko 2024-12-07 17:09:34 +03:00
parent 40b44d0c6c
commit af0c4de261

View File

@ -71,9 +71,9 @@ echo "Fixing SecretKey"
echo "Spoofing OS" echo "Spoofing OS"
find "./" -type f \( -name "*.js" -o -name "*.js.map" \) -print0 | while IFS= read -r -d $'\0' file; do find "./" -type f \( -name "*.js" -o -name "*.js.map" \) -print0 | while IFS= read -r -d $'\0' file; do
# Use 'sed' to perform the replacement in-place # Use 'sed' to perform the replacement in-place
sed -i "s/r.t.WINDOWS/r.t.LINUX/g" "$file" sed -i 's/WINDOWS:e="kzqU4XhfCaY6B6JTHODeq5"/LINUX:e="kzqU4XhfCaY6B6JTHODeq5"/g' "$file"
sed -i "s/l.isLinuxApplication/(window.CUSTOM_TITLE_BAR)/g" "$file" sed -i 's/l.isLinuxApplication/(window.CUSTOM_TITLE_BAR)/g' "$file"
sed -i "s/a.isLinuxApplication/(window.CUSTOM_TITLE_BAR)/g" "$file" sed -i 's/a.isLinuxApplication/(window.CUSTOM_TITLE_BAR)/g' "$file"
done done
echo "OS spoofed" echo "OS spoofed"