This file contains 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 | |
DIR="/Library/Activator/ja.lproj" | |
FILE="Localizable.strings" | |
mv ${DIR}/${FILE} ${DIR}/${FILE}.mod | |
if [ -e ${DIR}/${FILE}.bak ]; then | |
mv ${DIR}/${FILE}.bak ${DIR}/${FILE} | |
fi |
This file contains 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 | |
DIR="/Library/Activator/ja.lproj" | |
FILE="Localizable.strings" | |
if [ -e ${DIR}/${FILE} ] | |
then | |
mv ${DIR}/${FILE} ${DIR}/${FILE}.bak | |
fi |
This file contains 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
alias ll='ls -l' | |
alias mvcydia='ll *.deb; mv *.deb repo/cydia; cd repo/cydia; repo; ll; sftpcydia' | |
alias repo='mv Packages.bz2 Packages.bak; /var/root/apt/repo/cydia-scanpackages . /dev/null >Packages; bzip2 Packages' | |
alias sftpcydia='sftp [email protected]:www/cydia' |
This file contains 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
■Cydia 1.x動作 | |
・Cydia 1.1 Released - Heres All Features | |
http://www.geohot.us/2011/03/cydia-11-released-heres-all-features.html | |
・SBSettingsの起動が可能になった。ただしActivator呼び出しにはActivatorForcerがやはり必要。 | |
・Backgrounderを使用してもバックグラウンド動作ができなくなってる。 | |
※以下は次の環境で調査 | |
・iPhone4/iOS4.0.1/Cydia1.1 | |
■パッケージをインストールする時のCydiaの動作 |
This file contains 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
# TwiProwl 1.4.0の通知メッセージ出力部分を自分好みに変更した部分(抜粋) | |
# 変更点: | |
# ・アイコンを変更 | |
# ・通知メッセージを簡潔にした | |
def process_stream( json ) | |
mentions = json['entities'] ? json['entities']['user_mentions'] : nil | |
retweets = json['retweeted_status'] | |
message = json['direct_message'] | |
event = json['event'] |
NewerOlder