Remove the lockscreen and home screen status bar.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

13 lines
271B

  1. %hook UIStatusBar_Modern
  2. -(void)setAlpha:(CGFloat)arg1 {
  3. %orig(0.0); // makes status bar transparent on lock screen
  4. }
  5. %end
  6. %hook SBDashBoardTeachableMomentsContainerView
  7. -(void)_addControlCenterTutors {
  8. // Nothing here to prevent the cc grabber from showing
  9. }
  10. %end