浏览代码

Fix Respring button

master
mac-user669 5 年前
父节点
当前提交
4497903f66
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. +7
    -0
      zenithdarkprefs/ZNDarkPrefsRootListController.m

+ 7
- 0
zenithdarkprefs/ZNDarkPrefsRootListController.m 查看文件

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 {



正在加载...
取消
保存