Skip to content

Instantly share code, notes, and snippets.

@jonocole
Created February 11, 2013 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonocole/4755437 to your computer and use it in GitHub Desktop.
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)
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