mirror of
https://github.com/Magisk-Modules-Repo/MagiskHidePropsConf.git
synced 2024-11-16 23:10:58 +00:00
107 lines
4.3 KiB
Bash
107 lines
4.3 KiB
Bash
#!/system/bin/sh
|
|
|
|
# MagiskHide Props Config
|
|
# By Didgeridoohan @ XDA Developers
|
|
|
|
CONFFINGERPRINT=""
|
|
|
|
CONFPROPFILES=false
|
|
|
|
CONFDEBUGGABLE=""
|
|
CONFSECURE=""
|
|
CONFTYPE=""
|
|
CONFTAGS=""
|
|
CONFSELINUX=""
|
|
|
|
CONFPROPS=""
|
|
CONFPROPSPOST=""
|
|
CONFPROPSLATE=""
|
|
PROPOPTION=replace
|
|
|
|
CONFDELPROPS=""
|
|
DELPROPOPTION=replace
|
|
|
|
CONFLATE=false
|
|
CONFCOLOUR=enabled
|
|
CONFWEB=enabled
|
|
|
|
# =================================================================
|
|
# ========================== Instructions =========================
|
|
# =================================================================
|
|
# Set the above variables to the desired prop/configuration values.
|
|
|
|
# CONFFINGERPRINT should be set to the fingerprint of a ROM that passes
|
|
# the ctsProfile check. See the prints.sh file for usable prints,
|
|
# or the documentation for information on how to find one.
|
|
|
|
# CONFPROPFILES should be set to "true" if you want to mask the file
|
|
# values in build.prop and default.prop. For better root hiding.
|
|
|
|
# The MagiskHide prop variables can be set as follows:
|
|
# CONFDEBUGGABLE - 0 or 1 (set to "0" by MagiskHide - sensitive value is "1")
|
|
# CONFSECURE - 0 or 1 (set to "1" by MagiskHide - sensitive value is "0")
|
|
# CONFTYPE - user or userdebug (set to "user" by MagiskHide - sensitive value is "userdebug")
|
|
# CONFTAGS - release-keys or test-keys (set to "release-keys" by MagiskHide - sensitive value is "test-keys")
|
|
# CONFSELINUX - 0 or 1 (set to "0" by MagiskHide - sensitive value is "1")
|
|
|
|
# CONFPROPS should contain any custom props and the value you want the module to set.
|
|
# Any props you've previously edited in build.prop, and more, can be set like this.
|
|
# Add them to the CONFPROPS variable according to the following example:
|
|
# CONFPROPS="
|
|
# ro.sf.lcd_density=320
|
|
# ro.config.media_vol_steps=30
|
|
# net.tethering.noprovisioning=true
|
|
# "
|
|
# Please observe that if the prop you're trying to set contains spaces, you'll
|
|
# need to replace those spaces with "_sp_" (without the quotation marks).
|
|
#
|
|
# If you want a specific prop to run in either post-fs-data or late_start service,
|
|
# use either CONFPROPSPOST or CONFPROPSLATE instead. Any props added to CONFPROPS
|
|
# will run in the boot stage currently set in the module options (see CONFLATE below).
|
|
#
|
|
# With PROPOPTION you can decide if the current custom prop list should
|
|
# be replaced, added to or preserved. Add the corresponding words "replace",
|
|
# "add", or "preserve". The default option is to replace the list.
|
|
# This option supersedes the preserve option described below, but only
|
|
# for the CONFPROPS variables.
|
|
|
|
# CONFDELPROPS is a list of props you want to remove from your system.
|
|
# Be very careful when using this option, removing the wrong props might
|
|
# cause issues.
|
|
# Add the props you want to remove to the CONFDELPROPS variable according to
|
|
# the following example:
|
|
# CONFDELPROPS="
|
|
# ro.sf.lcd_density
|
|
# ro.config.media_vol_steps
|
|
# net.tethering.noprovisioning
|
|
# "
|
|
#
|
|
# With DELPROPOPTION you can decide if the current custom prop list should
|
|
# be replaced, added to or preserved. Add the corresponding words "replace",
|
|
# "add", or "preserve". The default option is to replace the list.
|
|
# This option supersedes the preserve option described below, but only
|
|
# for the CONFDELPROPS variable.
|
|
|
|
# CONFLATE is by default set to "false". This loads the boot script during the
|
|
# post-fs-data mode. If the setting is changed to "true", the boot script
|
|
# will instead be loaded later during boot, in the late_start service mode. This is
|
|
# useful if the module's boot script seems to be causing issues during boot.
|
|
#
|
|
# CONFCOLOUR and CONFWEB are the options for colour and automatic fingerprints
|
|
# list update. See the module documentation for more details.
|
|
|
|
# If any variables are left unset, that particular prop/configuration
|
|
# will be cleared and the device/MagiskHide default values will be used.
|
|
# If you want to keep any current module settings, add "preserve" to the variable.
|
|
# Example:
|
|
# CONFFINGERPRINT=preserve
|
|
|
|
# When placed in /cache or the root of your internal storage, the module will load these
|
|
# values during boot and the configuration file will be deleted. Keep a backup of the
|
|
# file if you want to reuse it at a later time (clean ROM flash, etc).
|
|
|
|
# For more information, see the documentation:
|
|
# https://github.com/Magisk-Modules-Repo/MagiskHide-Props-Config/blob/master/README.md
|
|
# and the support thread @ XDA Developers:
|
|
# https://forum.xda-developers.com/apps/magisk/module-magiskhide-props-config-t3789228
|