1
1
# uninstall fallback if app ain't nuked on late service
2
- # this executes : pm uninstall -k --user 0
3
- # only runs if the app still exists after on late-service
2
+ # this runs : pm uninstall -k --user 0
3
+ # only triggers if the app still exists after late-service
4
4
# default is false
5
5
uninstall_fallback=false
6
6
7
- # mount the module globally with mountify standalone script
8
- # requires **TMPFS_XATTR** or **OverlayFS manager**
9
- # this is auto-enabled during install if the environment supports it
10
- # DO NOT enable this manually unless you're sure the enviromentment is supported
7
+ # mount the module globally using the standalone mountify script
8
+ # needs either **TMPFS_XATTR** support or the OverlayFS manager
9
+ # auto-enabled during install if the env can handle it
10
+ # if mountify's already installed and will mount this module, this gets auto-disabled
11
+ # DO NOT flip this manually unless you're sure the env supports it
11
12
use_mountify_script=false
12
13
13
14
# refresh (regenerate) the app list cache every boot
14
- # this is set to true by default to ensure correct app list when it is changing
15
+ # default is true to make sure app list stays accurate when things change
15
16
refresh_applist=true
16
17
17
18
# ----
18
19
# ⚠️ DO NOT EDIT BELOW THIS LINE
19
- # configuration (s) after this are env-specific nor not meant to be edited
20
- # these values are auto-set and may break things if changed manually
20
+ # config (s) below are env-specific or not meant to be touched
21
+ # these are auto-set and might break stuff if changed manually
21
22
# ----
22
23
23
- # mounting system (true = manager is magic mount)
24
+ # mounting system
25
+ # (true = manager is magic mount)
26
+ # (false = manager is overlayfs)
24
27
magic_mount=true
25
28
26
- # EOF
29
+ # EOF
0 commit comments