blob: 953ae57996ae328677135fa2682f0ea0e675cc34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
for dir in \
/Applications \
/Library/Ringtones \
/Library/Wallpaper \
/System/Library/Fonts \
/System/Library/TextInput \
/usr/share
do
. /usr/libexec/cydia/move.sh -v "${dir}"
done
|