Fix Respring button
This commit is contained in:
@ -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 {
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user