Skip to content

Instantly share code, notes, and snippets.

@Sakurina
Created August 10, 2010 01:35
Show Gist options
  • Save Sakurina/516478 to your computer and use it in GitHub Desktop.
Save Sakurina/516478 to your computer and use it in GitHub Desktop.
fades out apps that support multitasking so you can get rid of those who don't
/*
* multifader - fades out apps that support multitasking so you can get rid of those who don't
* an experiment by Yanik Magnan - http://r-ch.net
*/
for each (i in [[[SBIconModel sharedInstance] applicationIcons] allObjects]) {
if ([[i.application.bundle.infoDictionary objectForKey:"DTSDKName"] hasPrefix:@"iphoneos4"])
[i setAlpha:0.1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment