Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Samgisaninja committed Dec 31, 2018
0 parents commit 2430742
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
include $(THEOS)/makefiles/common.mk

TWEAK_NAME = sillyo
sillyo_FILES = Tweak.xm

include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
install.exec "killall -9 SpringBoard"
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# sillyo
Compatibility layer for running Sileo on the unc0ver jailbreak
8 changes: 8 additions & 0 deletions Tweak.xm
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
%hook Database

- (NSArray *) sources {
NSLog(@"%@", %orig);
return %orig;
}

%end
9 changes: 9 additions & 0 deletions control
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Package: com.samgisaninja.sillyo
Name: sillyo
Depends: mobilesubstrate
Version: 0.0.1
Architecture: iphoneos-arm
Description: An awesome MobileSubstrate tweak!
Maintainer: unc0ver Team
Author: unc0ver Team
Section: Tweaks
1 change: 1 addition & 0 deletions sillyo.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ Filter = { Bundles = ( "com.saurik.Cydia" ); }; }

0 comments on commit 2430742

Please sign in to comment.