├── LICENSE ├── Makefile ├── TrollLock.plist ├── Tweak.x ├── control └── layout └── Library └── Application Support └── TrollLock └── trollformation.bundle └── trollformation.ca ├── assets ├── trollformation1.png ├── trollformation10.png ├── trollformation11.png ├── trollformation12.png ├── trollformation13.png ├── trollformation14.png ├── trollformation15.png ├── trollformation16.png ├── trollformation17.png ├── trollformation18.png ├── trollformation19.png ├── trollformation2.png ├── trollformation20.png ├── trollformation21.png ├── trollformation22.png ├── trollformation23.png ├── trollformation24.png ├── trollformation25.png ├── trollformation26.png ├── trollformation27.png ├── trollformation28.png ├── trollformation29.png ├── trollformation3.png ├── trollformation30.png ├── trollformation31.png ├── trollformation32.png ├── trollformation33.png ├── trollformation34.png ├── trollformation35.png ├── trollformation36.png ├── trollformation37.png ├── trollformation38.png ├── trollformation39.png ├── trollformation4.png ├── trollformation40.png ├── trollformation5.png ├── trollformation6.png ├── trollformation7.png ├── trollformation8.png └── trollformation9.png ├── index.xml └── main.caml /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 mmshivesh 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | include $(THEOS)/makefiles/common.mk 2 | 3 | TWEAK_NAME = TrollLock 4 | SDKVERSION = 11.4 5 | ARCHS = arm64 arm64e 6 | TrollLock_FILES = Tweak.x 7 | DEBUG=0 8 | PACKAGE_VERSION=1.0.3 9 | include $(THEOS_MAKE_PATH)/tweak.mk 10 | 11 | internal-stage:: 12 | #Filter plist 13 | $(ECHO_NOTHING)if [ -f Filter.plist ]; then mkdir -p $(THEOS_STAGING_DIR)/Library/MobileSubstrate/DynamicLibraries/; cp Filter.plist $(THEOS_STAGING_DIR)/Library/MobileSubstrate/DynamicLibraries/TrollLock.plist; fi$(ECHO_END) 14 | #PreferenceLoader plist 15 | $(ECHO_NOTHING)if [ -f Preferences.plist ]; then mkdir -p $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences/TrollLock; cp Preferences.plist $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences/TrollLock/; fi$(ECHO_END) 16 | 17 | after-install:: 18 | install.exec "killall backboardd" 19 | -------------------------------------------------------------------------------- /TrollLock.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Filter 6 | 7 | Bundles 8 | 9 | com.apple.springboard 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | %hook BSUICAPackageView 4 | - (id)initWithPackageName:(NSString *)arg1 inBundle:(id)arg2 { 5 | if(![arg1 containsString:@"lock"]) { 6 | return %orig; 7 | } 8 | 9 | 10 | NSBundle *trollBundle = [[NSBundle alloc] initWithPath:[NSString stringWithFormat:@"%@/%@", @"/Library/Application Support/TrollLock/" , @"trollformation.bundle"]]; 11 | return %orig(@"trollformation",trollBundle); 12 | } 13 | %end 14 | -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- 1 | Package: com.nathan.trolllock 2 | Name: TrollLock 3 | Description: Tweak that turns the faceID glyph into a trollface 4 | Version: 1.0.3 5 | Depends: firmware (>=12.0), mobilesubstrate 6 | Priority: optional 7 | Section: Tweaks 8 | Architecture: iphoneos-arm 9 | Maintainer: Nathan 10 | -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation1.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation10.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation11.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation12.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation13.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation14.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation15.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation16.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation17.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation18.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation19.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation2.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation20.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation21.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation22.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation23.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation24.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation25.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation26.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation27.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation28.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation29.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation3.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation30.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation31.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation32.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation33.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation34.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation35.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation36.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation37.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation38.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation39.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation4.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation40.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation5.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation6.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation7.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation8.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/verygenericname/TrollLock/5d6f845d9cf1463b2d060808f821dc8cb3790e24/layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/assets/trollformation9.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | documentResizesToView 6 | 7 | geometryFlipped 8 | 9 | rootDocument 10 | main.caml 11 | unitsInPixelsInPlayer 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /layout/Library/Application Support/TrollLock/trollformation.bundle/trollformation.ca/main.caml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | --------------------------------------------------------------------------------