Fix Respring button

This commit is contained in:
2020-01-25 11:12:12 -05:00
parent a5cc76d527
commit 4497903f66

View File

@ -77,6 +77,13 @@
return _specifiers; return _specifiers;
} }
-(void)respring {
NSTask *task = [[[NSTask alloc] init] autorelease];
[task setLaunchPath:@"/usr/bin/killall"];
[task setArguments:[NSArray arrayWithObjects:@"backboardd", nil]];
[task launch];
}
-(void)doAFancyRespring { -(void)doAFancyRespring {