This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export THEOS=/opt/theos | |
# clone theos.git | |
cd /opt | |
git clone git://github.com/DHowett/theos.git | |
# clone iphoneheaders.git | |
cd $THEOS | |
mv include include.bak |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
expect -c" | |
spawn make package install | |
expect { | |
\"'s password:\" { | |
send \"alpine\r\" | |
expect \"'s password:\" | |
send \"alpine\r\" | |
expect \"'s password:\" | |
send \"alpine\r\" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# class-dump class-dump-z | |
# - main.h | |
# CDStructures.h main-Structs.h | |
# xxx-Protocol.h xxx.h | |
usage () | |
{ | |
echo "Usage: $0 executable target_directory" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Delay in ms until autocompletion pops up after . or :: or -> | |
// Set to 0 to disable | |
"popup_delay": 100, | |
// Delay in ms until recompiling the file after the buffer is modified | |
// Set to 0 to disable | |
"recompile_delay": 1000, | |
// Whether or not to hide the clang output panel when it's empty |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ARCHS = armv7 | |
THEOS_INSTALL_KILL = gunosy | |
THEOS_DEVICE_IP = iphone.local | |
include theos/makefiles/common.mk | |
TWEAK_NAME = GunosyEnhancer | |
GunosyEnhancer_FILES = PocketAPI/PocketAPI.m PocketAPI/PocketAPIOperation.m PocketAPI/SFHFKeychainUtils.m | |
GunosyEnhancer_OBJCC_FILES = Tweak.xm | |
GunosyEnhancer_FRAMEWORKS = UIKit Security Foundation CoreGraphics |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
THEOS_INSTALL_DIR="/opt" | |
THEOS=${THEOS_INSTALL_DIR}/theos | |
BIGBOSS_REPO="http://apt.thebigboss.org/repofiles/cydia" | |
SUBSTRATE_REPO="http://apt.saurik.com" | |
# initial theos install directory check | |
if [ ! -d "$THEOS_INSTALL_DIR" ]; then | |
echo "making $THEOS_INSTALL_DIR" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function dump { | |
if [ ! -e /usr/bin/class-dump ]; then | |
echo | |
echo "Cannot find Class Dump install it to use this option" | |
echo | |
exit 1 | |
fi | |
echo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define PreferencesFilePath [NSHomeDirectory() stringByAppendingPathComponent:@"Library/Preferences/com.kindadev.transparenticonselection.plist"] | |
@interface SBApplicationIcon | |
- (id)applicationBundleID; | |
@end | |
@interface SBUserInstalledApplicationIcon : SBApplicationIcon | |
@end | |
%hook SBIconImageView |
OlderNewer