forked from yaypixxo/RoundedPageDots
Initial commit
This commit is contained in:
12
Makefile
Normal file
12
Makefile
Normal file
@ -0,0 +1,12 @@
|
||||
ARCHS = armv7 arm64 arm64e
|
||||
TARGET = iphone:clang:10.3:10.3
|
||||
|
||||
include $(THEOS)/makefiles/common.mk
|
||||
|
||||
TWEAK_NAME = RoundedPageDots
|
||||
RoundedPageDots_FILES = Tweak.xm
|
||||
|
||||
include $(THEOS_MAKE_PATH)/tweak.mk
|
||||
|
||||
after-install::
|
||||
install.exec "killall -9 SpringBoard"
|
@ -1,2 +1,4 @@
|
||||
# RoundedPageDots
|
||||
Simple extension for jailbroken iOS to make the page dots square with rounded corners.
|
||||
|
||||
For arm64e support, build with theos on macOS.
|
||||
|
8
RoundedPageDots.plist
Normal file
8
RoundedPageDots.plist
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
Filter = {
|
||||
Bundles = (
|
||||
"com.apple.springboard",
|
||||
"com.apple.uikit"
|
||||
);
|
||||
};
|
||||
}
|
12
Tweak.xm
Normal file
12
Tweak.xm
Normal file
@ -0,0 +1,12 @@
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@interface _UILegibilityView : UIView
|
||||
-(UIImageView *)imageView;
|
||||
@end
|
||||
|
||||
%hook UIPageControl
|
||||
-(double)_modernCornerRadius {
|
||||
return 1;
|
||||
}
|
||||
|
||||
%end
|
10
control
Normal file
10
control
Normal file
@ -0,0 +1,10 @@
|
||||
Package: com.yaypixxo.roundedpagedots
|
||||
Name: RoundedPageDots
|
||||
Depends: mobilesubstrate
|
||||
Version: 1.0.1
|
||||
Architecture: iphoneos-arm
|
||||
Description: square with rounded corners page dots lol
|
||||
Depiction: http://yaypixxo.com/depictions?p=com.yaypixxo.roundedpagedots
|
||||
Maintainer: YaYPIXXO <viggo@lekdorf.com>
|
||||
Author: YaYPIXXO <viggo@lekdorf.com>
|
||||
Section: Tweaks
|
Reference in New Issue
Block a user