├── .gitignore ├── DiscordExtras.plist ├── LICENSE ├── Makefile ├── README.md ├── Tweak.h ├── Tweak.x ├── Utils.h ├── Utils.x ├── control ├── discordExtras_daemonUser.h ├── discordExtras_helperUser.c ├── discordextrasserver ├── Ent.plist ├── Makefile ├── discordExtras_daemonServer.h ├── discordExtras_helperServer.c ├── main.m └── pathname_type.h ├── jsbundletools ├── Makefile └── entitlements.plist ├── layout ├── DEBIAN │ ├── postinst │ └── prerm └── Library │ └── LaunchDaemons │ ├── cy_moe.panties.discordextrasserver.plist │ └── lh_moe.panties.discordextrasserver.plist ├── mach ├── discordExtras_daemonServer.h ├── discordExtras_daemonUser.h ├── discordExtras_helperServer.c ├── discordExtras_helperUser.c ├── mig.defs └── pathname_type.h └── pathname_type.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/.gitignore -------------------------------------------------------------------------------- /DiscordExtras.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/DiscordExtras.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/Tweak.h -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/Tweak.x -------------------------------------------------------------------------------- /Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/Utils.h -------------------------------------------------------------------------------- /Utils.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/Utils.x -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/control -------------------------------------------------------------------------------- /discordExtras_daemonUser.h: -------------------------------------------------------------------------------- 1 | mach/discordExtras_daemonUser.h -------------------------------------------------------------------------------- /discordExtras_helperUser.c: -------------------------------------------------------------------------------- 1 | mach/discordExtras_helperUser.c -------------------------------------------------------------------------------- /discordextrasserver/Ent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/discordextrasserver/Ent.plist -------------------------------------------------------------------------------- /discordextrasserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/discordextrasserver/Makefile -------------------------------------------------------------------------------- /discordextrasserver/discordExtras_daemonServer.h: -------------------------------------------------------------------------------- 1 | ../mach/discordExtras_daemonServer.h -------------------------------------------------------------------------------- /discordextrasserver/discordExtras_helperServer.c: -------------------------------------------------------------------------------- 1 | ../mach/discordExtras_helperServer.c -------------------------------------------------------------------------------- /discordextrasserver/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/discordextrasserver/main.m -------------------------------------------------------------------------------- /discordextrasserver/pathname_type.h: -------------------------------------------------------------------------------- 1 | ../mach/pathname_type.h -------------------------------------------------------------------------------- /jsbundletools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/jsbundletools/Makefile -------------------------------------------------------------------------------- /jsbundletools/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/jsbundletools/entitlements.plist -------------------------------------------------------------------------------- /layout/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/layout/DEBIAN/postinst -------------------------------------------------------------------------------- /layout/DEBIAN/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/layout/DEBIAN/prerm -------------------------------------------------------------------------------- /layout/Library/LaunchDaemons/cy_moe.panties.discordextrasserver.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/layout/Library/LaunchDaemons/cy_moe.panties.discordextrasserver.plist -------------------------------------------------------------------------------- /layout/Library/LaunchDaemons/lh_moe.panties.discordextrasserver.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/layout/Library/LaunchDaemons/lh_moe.panties.discordextrasserver.plist -------------------------------------------------------------------------------- /mach/discordExtras_daemonServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/mach/discordExtras_daemonServer.h -------------------------------------------------------------------------------- /mach/discordExtras_daemonUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/mach/discordExtras_daemonUser.h -------------------------------------------------------------------------------- /mach/discordExtras_helperServer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/mach/discordExtras_helperServer.c -------------------------------------------------------------------------------- /mach/discordExtras_helperUser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/mach/discordExtras_helperUser.c -------------------------------------------------------------------------------- /mach/mig.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotZoeyDev/DiscordExtras/HEAD/mach/mig.defs -------------------------------------------------------------------------------- /mach/pathname_type.h: -------------------------------------------------------------------------------- 1 | typedef uint8_t *pathname_t; 2 | -------------------------------------------------------------------------------- /pathname_type.h: -------------------------------------------------------------------------------- 1 | mach/pathname_type.h --------------------------------------------------------------------------------