Skip to content

🔄 An easy way to run LDRestart as root. Made for tweak developers.

Notifications You must be signed in to change notification settings

CallMeEchoCodes/ldrestartutil

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ldrestartutil

An easy way to run LDRestart as root. Made for tweak developers.

Usage

  1. Add it to your dependencies
Depends: dev.callmeecho.ldrestartutil
  1. Use it!
// Objective C example
- (void)ldrestart {
    pid_t pid;
    char *args[] = { ROOT_PATH("/usr/libexec/ldrestartutil"), NULL };
    int status = posix_spawn(&pid, args[0], NULL, NULL, args, NULL);
    waitpid(pid, NULL, 0);
}
// Swift example
let task = NSTask()
// If you know how to it might be a good idea to use the ROOT_PATH_NS macro. Check Rootpath.h and Rootpath.m on this repo
task.setLaunchPath("/usr/libexec/ldrestartutil")
task.launch()
task.waitUntilExit()