Created
February 11, 2013 16:13
-
-
Save jonocole/4755437 to your computer and use it in GitHub Desktop.
Remove skip limit from last.fm client. (Needs last.fm version > 2.1.33)
This file contains 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
patch -d /Applications/Last.fm.app/Contents <<EOF | |
--- Info.plist | |
+++ Info.plist | |
@@ -2,6 +2,11 @@ | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
+ <key>LSEnvironment</key> | |
+ <dict> | |
+ <key>LASTFM_SKIP_LIMIT</key> | |
+ <integer>99999</integer> | |
+ </dict> | |
<key>CFBundleIconFile</key> | |
<string>audioscrobbler.icns</string> | |
<key>CFBundlePackageType</key> | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment