Created
August 10, 2010 01:35
-
-
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
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
/* | |
* 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