DivestOS/Scripts/Rebrand-14.1.sh

30 lines
1.1 KiB
Bash
Raw Normal View History

#!/bin/bash
#Copyright (c) 2015-2017 Spot Communications, Inc.
#Updates select user facing strings
base="/mnt/Drive-1/Development/Other/Android_ROMs/Build/LineageOS-14.1/"
2017-10-18 14:00:05 +00:00
echo "Rebranding..."
cd $base"packages/apps/Settings"
sed -i '/.*cmlicense_title/s/LineageOS/DivestOS/' res/values*/cm_strings.xml
sed -i '/.*cmupdate_settings_title/s/LineageOS/DivestOS/' res/values*/cm_strings.xml
sed -i '/.*mod_version/s/LineageOS/DivestOS/' res/values*/cm_strings.xml
cd $base"packages/apps/SetupWizard"
2017-10-18 14:00:05 +00:00
sed -i 's|http://lineageos.org/legal|https://divestos.xyz/pages/legal/pp.html|' src/com/cyanogenmod/setupwizard/LineageSettingsActivity.java;
sed -i '/.*setup_services/s/LineageOS/DivestOS/' res/values*/strings.xml
sed -i '/.*services_explanation/s/LineageOS/DivestOS/' res/values*/strings.xml
cd $base"packages/apps/Updater"
sed -i 's|>LineageOS|>DivestOS|' res/values*/strings.xml
cd $base"vendor/cm"
2017-10-18 14:00:05 +00:00
sed -i 's|http://lineageos.org/legal|https://divestos.xyz/pages/about.html|' config/common.mk;
#sed -i '/.*ZIPFILE=/s/lineage/divestos/' build/envsetup.sh
2017-10-19 03:10:20 +00:00
rm -rf bootanimation #TODO: Create a boot animation
2017-10-18 14:00:05 +00:00
cd $base
echo "Rebranding complete!"