-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost-fs-data.sh
21 lines (17 loc) · 960 Bytes
/
post-fs-data.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/system/bin/sh
## For compatibility reasons, competing script(s) and file(s) are removed.
## ipdev @ xda-developers
# Module Directory
MDIR=${0%/*}
# Magisk Modules Directory
MMDIR=${MDIR%/*}
# ADB Directory
ADB=${MMDIR%/*}
## Check and remove Vanced YouTube Music scripts and files.
[[ -f $ADB/post-fs-data.d/music.sh ]] && rm $ADB/post-fs-data.d/music.sh;
[[ -f $ADB/service.d/music.sh ]] && rm $ADB/service.d/music.sh;
[[ -d $ADB/Music ]] && rm -rf $ADB/Music;
## Check and remove ReVanced YouTube Music scripts and files.
[[ -f $ADB/post-fs-data.d/com.google.android.apps.youtube.music.sh ]] && rm $ADB/post-fs-data.d/com.google.android.apps.youtube.music.sh;
[[ -f $ADB/service.d/com.google.android.apps.youtube.music.sh ]] && rm $ADB/service.d/com.google.android.apps.youtube.music.sh;
[[ -d /data/local/tmp/revanced-manager/com.google.android.apps.youtube.music ]] && rm -rf /data/local/tmp/revanced-manager/com.google.android.apps.youtube.music;