├── .gitignore ├── CommandLine ├── Makefile ├── entitlements.xml └── main.m ├── Makefile ├── README.md ├── Shared ├── DASActivityOmnibusSchedulingAdditions.h ├── FrameworkHeaders │ ├── NSXPCConnection+Internal.h │ ├── NSXPCInterface.h │ ├── _DASDaemon.h │ ├── _DASDaemonClient.h │ └── _DASDaemonInterface.h ├── XPCActivityRunError.h └── XPCActivityRunError.m ├── Tweak ├── DASDaemonInterface.x ├── Makefile ├── NSXPCActivity.x └── xpcactivityruntweak.plist └── control /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/.gitignore -------------------------------------------------------------------------------- /CommandLine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/CommandLine/Makefile -------------------------------------------------------------------------------- /CommandLine/entitlements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/CommandLine/entitlements.xml -------------------------------------------------------------------------------- /CommandLine/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/CommandLine/main.m -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/README.md -------------------------------------------------------------------------------- /Shared/DASActivityOmnibusSchedulingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/Shared/DASActivityOmnibusSchedulingAdditions.h -------------------------------------------------------------------------------- /Shared/FrameworkHeaders/NSXPCConnection+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/Shared/FrameworkHeaders/NSXPCConnection+Internal.h -------------------------------------------------------------------------------- /Shared/FrameworkHeaders/NSXPCInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/Shared/FrameworkHeaders/NSXPCInterface.h -------------------------------------------------------------------------------- /Shared/FrameworkHeaders/_DASDaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/Shared/FrameworkHeaders/_DASDaemon.h -------------------------------------------------------------------------------- /Shared/FrameworkHeaders/_DASDaemonClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/Shared/FrameworkHeaders/_DASDaemonClient.h -------------------------------------------------------------------------------- /Shared/FrameworkHeaders/_DASDaemonInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/Shared/FrameworkHeaders/_DASDaemonInterface.h -------------------------------------------------------------------------------- /Shared/XPCActivityRunError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/Shared/XPCActivityRunError.h -------------------------------------------------------------------------------- /Shared/XPCActivityRunError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/Shared/XPCActivityRunError.m -------------------------------------------------------------------------------- /Tweak/DASDaemonInterface.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/Tweak/DASDaemonInterface.x -------------------------------------------------------------------------------- /Tweak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/Tweak/Makefile -------------------------------------------------------------------------------- /Tweak/NSXPCActivity.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/Tweak/NSXPCActivity.x -------------------------------------------------------------------------------- /Tweak/xpcactivityruntweak.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/Tweak/xpcactivityruntweak.plist -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycebostwick/XPCActivityRun/HEAD/control --------------------------------------------------------------------------------