Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
JunesiPhone committed Jan 21, 2018
0 parents commit 51b8e5d
Show file tree
Hide file tree
Showing 6 changed files with 59 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
packages/
.theos
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
TARGET = iphone:10.1:10.1
ARCHS = armv7 arm64

include $(THEOS)/makefiles/common.mk

TWEAK_NAME = hideactions
hideactions_FILES = Tweak.xm

include $(THEOS_MAKE_PATH)/tweak.mk

before-stage::
find . -name ".DS_Store" -delete

after-install::
install.exec "killall -9 SpringBoard"
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
HideActions
----

Hide the camera, flashlight, home, and home text.

Electra Install
----



22 changes: 22 additions & 0 deletions Tweak.xm
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

// Created by JunesiPhone on 01/21/2018.
// Copyright © 2018 JunesiPhone. All rights reserved.


%hook SBDashBoardTeachableMomentsContainerView
- (void)_addCallToActionLabel{

}
- (void)_addHomeAffordance{

}
%end

%hook SBDashBoardQuickActionsViewController
- (_Bool)hasFlashlight{
return NO;
}
- (_Bool)hasCamera{
return NO;
}
%end
9 changes: 9 additions & 0 deletions control
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Package: com.junesiphone.hideactions
Name: hideactions
Depends: mobilesubstrate
Version: 0.0.1
Architecture: iphoneos-arm
Description: Hide Action Buttons iOS11
Maintainer: JunesiPhone
Author: JunesiPhone
Section: Tweaks
1 change: 1 addition & 0 deletions hideactions.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ Filter = { Bundles = ( "com.apple.springboard" ); }; }

0 comments on commit 51b8e5d

Please sign in to comment.