Skip to content

Instantly share code, notes, and snippets.

@MTACS
Last active September 26, 2023 17:19
Show Gist options
  • Save MTACS/31887e33b5661f885f986a566340c490 to your computer and use it in GitHub Desktop.
Save MTACS/31887e33b5661f885f986a566340c490 to your computer and use it in GitHub Desktop.
Always show battery icon on wired CarPlay connections
// CAR* classes have been renamed to DB (DashBoard.framework) on iOS 16
// Note that this only shows the default battery with no inline percentage on iOS 16, use a tweak like Ampere (v1.3+) to enable the percentage
// iOS >= 16
%hook DBEnvironmentConfiguration
- (BOOL)isConnectedWirelessly {
return YES;
}
%end
// iOS < 16
%hook CAREnvironmentConfiguration
- (BOOL)isConnectedWirelessly {
return YES;
}
%end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment