diff options
Diffstat (limited to 'over')
-rwxr-xr-x | over/usr/libexec/cydia/boot/godmode | bin | 0 -> 8956 bytes | |||
-rwxr-xr-x | over/usr/libexec/cydia/boot/install.sh | 38 |
2 files changed, 38 insertions, 0 deletions
diff --git a/over/usr/libexec/cydia/boot/godmode b/over/usr/libexec/cydia/boot/godmode Binary files differnew file mode 100755 index 000000000..9ff8ec9eb --- /dev/null +++ b/over/usr/libexec/cydia/boot/godmode diff --git a/over/usr/libexec/cydia/boot/install.sh b/over/usr/libexec/cydia/boot/install.sh new file mode 100755 index 000000000..455a27a38 --- /dev/null +++ b/over/usr/libexec/cydia/boot/install.sh @@ -0,0 +1,38 @@ +#!/usr/libexec/cydia/boot/bash + +shopt -s extglob nullglob +export PATH=/usr/libexec/cydia/boot + +function df_() { + free=$(df -B1 "$1") + free=${free% *%*} + free=${free%%*( )} + free=${free##* } + echo "${free}" +} + +for dir in \ + /Applications \ + /Library/Ringtones \ + /Library/Wallpaper \ + /System/Library/Fonts \ + /usr/share +do if [[ -d ${dir} && ! -h ${dir} ]]; then + used=$(du -bs "${dir}") + used=${used%%$'\t'*} + free=$(df_ /var) + + if [[ ${used} -lt ${free} ]]; then + base=$(basename "${dir}") + + new=/var/${base} + if [[ -e ${new} ]]; then + new=$(mktemp -d cydia.XXXXXX) + fi + + godmode mv -T "${dir}" "${new}" + godmode ln -s "${new}" "${dir}" + fi +fi; done + +[[ $(df_ /) -gt 33554432 && $(df_ /var) -gt 33554432 ]] |