Removes the ability to uninstall any apps. Mirror of https://github.com/mac-user669/NoUninstall
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

6 lines
66B

  1. %hook SBLeafIcon
  2. -(BOOL)isUninstallSupported {
  3. return NO;
  4. }
  5. %end