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