int main(int argc, const char *argv[]) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
+ Class $LSApplicationWorkspace(objc_getClass("LSApplicationWorkspace"));
+ LSApplicationWorkspace *workspace($LSApplicationWorkspace == nil ? nil : [$LSApplicationWorkspace defaultWorkspace]);
+
+ if ([workspace respondsToSelector:@selector(_LSPrivateRebuildApplicationDatabasesForSystemApps:internal:user:)]) {
+ if (![workspace _LSPrivateRebuildApplicationDatabasesForSystemApps:YES internal:YES user:NO])
+ fprintf(stderr, "failed to rebuild application databases");
+ return 0;
+ }
+
bool respring(false);
NSString *home(NSHomeDirectory());
system("killall lsd");
- Class $LSApplicationWorkspace(objc_getClass("LSApplicationWorkspace"));
- LSApplicationWorkspace *workspace($LSApplicationWorkspace == nil ? nil : [$LSApplicationWorkspace defaultWorkspace]);
-
if ([workspace respondsToSelector:@selector(invalidateIconCache:)])
while (![workspace invalidateIconCache:nil])
sleep(1);
for (NSString *identifier in bundles) {
NSString *path([bundles objectForKey:identifier]);
- [workspace registerApplication:[NSURL fileURLWithPath:path]];
+ if (kCFCoreFoundationVersionNumber >= 800)
+ [workspace registerApplicationDictionary:[after objectForKey:identifier]];
+ else
+ [workspace registerApplication:[NSURL fileURLWithPath:path]];
}
for (NSString *path in removed)