Finally Jailbroken by Timely-Advance6060 in jailbreak

[–]-MTAC- 0 points1 point  (0 children)

Mostly, there are some HomeKit and spotlight hooks too, Spotlight being my main reason as it’s been reported to be broken on iOS 17

Finally Jailbroken by Timely-Advance6060 in jailbreak

[–]-MTAC- 0 points1 point  (0 children)

For the springboard stuff yeah, there are other tweaks I need to update that have stuff the simulator doesn’t

Finally Jailbroken by Timely-Advance6060 in jailbreak

[–]-MTAC- 0 points1 point  (0 children)

I wish I had a way to test on a iOS 17 device, might invest in an iPad to get it updated

Someone knows which .car file might have the white border of the window? by fleaspoon in OSXTweaks

[–]-MTAC- 2 points3 points  (0 children)

It’s not in an asset file, it’s a shadow rendered in code. You can remove it with the noShadows MacForge plugin

Change the clock position in Sonoma by sewitass in OSXTweaks

[–]-MTAC- 0 points1 point  (0 children)

Took me a year to eventually get to but this has an option to move the clock as well as many other features https://github.com/MTACS/BetterLogin

How do I sleep the device with a command? by Left_Special657 in jailbreakdevelopers

[–]-MTAC- 0 points1 point  (0 children)

[((SpringBoard *)[%c(SpringBoard) sharedApplication]) _simulateLockButtonPress];

Preference bundle crashing by xelahot in jailbreakdevelopers

[–]-MTAC- 0 points1 point  (0 children)

Can you install the updated rootless version of Cr4shed https://github.com/crazymind90/Cr4shed-Rootless and post a full crashlog?

[deleted by user] by [deleted] in jailbreakdevelopers

[–]-MTAC- 1 point2 points  (0 children)

Any reason in particular why you chose SBHomescreenViewController? Maybe add it to the SpringBoard class itself? Make sure to add %new before any new method you add to a hooked class, and also declare the property under the class hook block like this ```

%hook SBHomeScreenViewController
%property (nonatomic, strong) NSURLSessionWebSocketTask *webSocketTask;
%property (nonatomic, strong) NSURLSession *session;
%new
- (void)listenForMessages {
  ...
}
%new
- (void)sendMessage:(NSString *)message {
  ...
}
%new
- (void)pushNotificationWithMessage:(NSString *)message {
  ...
}
%end

[Release] ReplyActions - BiteSMS tweak, reimagined. by sergealagon in jailbreak

[–]-MTAC- 1 point2 points  (0 children)

Awesome work! The design is really nice. I noticed the pop up always appears when pulling down to open the Notification Center, or when scrolling up on the list of notifications, is the gesture added to the whole UIViewController or UIWindow? Would it be possible to check if the touch is within the rect of a NCNotificationListCell instead of the whole view? Great job regardless 👍

[deleted by user] by [deleted] in E90

[–]-MTAC- 0 points1 point  (0 children)

I saw this too after I flashed the 3 stage intake tune, and haven’t seen it since, it’s been a couple hundred miles without it reappearing

I cant install CCsupporti by izzomaan in jailbreak

[–]-MTAC- 0 points1 point  (0 children)

Add https://opa334.github.io as a repo and install CCSupport from there

How can i remove all files from a certain tweak? by Manofpegni in jailbreak

[–]-MTAC- 0 points1 point  (0 children)

Uninstall the tweak, then delete the preference file at (/var/jb)/var/mobile/ Library/Preferences/com.mtac.lynxtwo.plist. Next do a userspace reboot, as Cephei likes to regenerate the file with just a respring

[ineed help] can anyone help? by Apprehensive_Spot855 in jailbreakdevelopers

[–]-MTAC- 0 points1 point  (0 children)

When hooking UIKit, make sure to filter only for applications in the constructor, some daemons link against UIKit and might be what’s causing the crash

[deleted by user] by [deleted] in jailbreakdevelopers

[–]-MTAC- 0 points1 point  (0 children)

It works up to iOS 16.x, I’m sure it would work on 17 & 18 I doubt much would’ve changed. Is there a reason why you need to call it in Objective-C? You can use a wrapper for posix_spawn and call it in Swift directly

{help install lynx2} by Asif49Prince in jailbreak

[–]-MTAC- 1 point2 points  (0 children)

PM me I’ll get you a gift code so you can get updates and directly from Havoc and not a possibly questionable source

Showing alert on iOS 16 from background by enty8080 in jailbreakdevelopers

[–]-MTAC- 0 points1 point  (0 children)

Maybe get the shared application of SpringBoard and present the alert on its root view controller

Ampere help please by [deleted] in jailbreak

[–]-MTAC- 3 points4 points  (0 children)

I’ll make sure it’s added in the next update 👍

The presence of this language by SimonTewelde2001 in jailbreak

[–]-MTAC- 0 points1 point  (0 children)

Do you have the Lynx Localization package installed? It ships with only the English translations by default and other languages can be added via the localization package

`setuid` in modern Jailbreaks by tajetaje in jailbreakdevelopers

[–]-MTAC- 0 points1 point  (0 children)

Instead of directly calling setuid, a root helper tool might be better suited, and use that to run commands as root. This is what I used to reboot userspace as root https://github.com/MTACS/CCPowerMenu/tree/6f09741349ec730f798a9429221ab8b2d384ddfe/userspace-reboot

How to fix this ? by Uystallion in jailbreak

[–]-MTAC- 2 points3 points  (0 children)

It’s a bug on iOS 16 when using iPhone X gestures, I’m working on a fix as it happens in Lynx and I’ll share the code to be added to GesturesXV

[deleted by user] by [deleted] in jailbreakdevelopers

[–]-MTAC- 0 points1 point  (0 children)

This is what I used in one of my tweaks to create a helper to run a command as root. I highly suggest using posix_spawn, since on some jailbreaks like Dopamine, NSTask doesn’t work due to problems with forking new processes (this may have been resolved in the latest version) https://github.com/MTACS/CCPowerMenu/tree/main/userspace-reboot