[MODULE][Terminal] App Systemizer v17.3.1

Search This thread

LittleSlime

New member
Apr 9, 2023
1
0
Screenshot_20230409-142219.png

It isn't working
App names aren't showing up
I'm on moto g40 fusion, custom rom and rooted
 
Last edited:

0zymandiias

Member
Mar 11, 2023
45
4
Hi guys. I just installed the systemizer 17.3.1 but when I ask it to show the list, the list is empty. How do I fix this?
 

Untitled_neo

Member
Oct 17, 2020
13
2
I downloaded terminal_systemizer-master.zip from github and try to install from Magisk as module, but get unzip error((.
What to do, please help?
P.S. I unzipped it and repacked it without additional folder. But still get error Installation failed.
P.S.S. This version helped. Now it works finally
 
Last edited:

cappuccini

Senior Member
Nov 16, 2022
286
108
I downloaded terminal_systemizer-master.zip from github and try to install from Magisk as module, but get unzip error((.
What to do, please help?
P.S. I unzipped it and repacked it without additional folder. But still get error Installation failed.
P.S.S. This version helped. Now it works finally
...on "sourceforge.net/projects/magiskfiles/files/module-uploads" is no download of terminal systemizer available. thank you very much for the new link!
 
  • Like
Reactions: Untitled_neo

dolemitehc

Member
Aug 14, 2023
5
0
Greeting all. No matter what I do on my (newish) phone I can't move an app to system or priv-system. Link2SD won't do it for me either. I found this app systemizer which does what it says it does. However I'm wondering is it as "safe" and "undetectable" as if I were actually able to relocate the apps to the system directory?

The phone definitely seems to think GPS Joystick is a system app, however the app itself doesn't think it is. It won't allow me to run in "advanced" or "system" mode...does that make any difference? Is there any danger of having the GPS Joystick selected as the Mock GPS App in developer settings with the systemizer method? Etc.

Just not really clear on it all, don't want another strike...

Cheers
 

Top Liked Posts

  • There are no posts matching your filters.
  • 111
    [Terminal] App Systemizer

    Terminal App Systemizer systemizes Apps systemlessly! This is inspired by App Systemizer​ by stangri. I then decided to make a script/UI in Terminal emulator for it to make 'app systemizing' easier.

    How to use:
    • Install from recovery
    • Type su and
      Code:
      systemize
      in Terminal emulator or adb shell (use -nc, -a, -d, refer below)
    • Systemize Chosen App/APK!
    • And reboot to apply changes

    OPTIONS:
    ** If you don't want those colors, use -nc.
    Code:
    systemize -nc
    ** To directly systemize (without ui) a given package name/s, use -a
    Code:
    systemize -a com.oasisfeng.greenify org.adaway
    ** To directly systemize (without ui) a given apk/s, use -d
    Code:
    systemize -d /sdcard/example.apk /sdcard/example2.apk

    ** Uploading logs
    Go to the menu and type `logs`, this will upload the log files of this module and will generate a link. Send that :)
    Alternatively, Send `/cache/terminal_debloater-verbose.log` here. I'll examine it for problems and will try to fix it.

    Dowloads are here!
    Github
    Telegram Channel
    Notification Channel

    DONATE? If you want to (ノ・ω・)ノ゙
    35
    Sorry wrong line numbers, should be 315 and 559.
    It's basically the same path fix as you did before, I just hardcoded it without if-clause for my personal use.
    I have no time to publish it at the moment, otherwise I had done it already. (and I rarely use my github account at the moment).

    Line 315 can be replaced with:
    Code:
      [ $API -lt 30 ] && systemize /system/$installdir /data/app/${apklabel}-*/base.apk
      [ $API -ge 30 ] && systemize /system/$installdir /data/app/*/${apklabel}-*/base.apk
    and line 559 with:
    Code:
          [ $API -lt 30 ] && app_path="/data/app/${i}-*/base.apk"
          [ $API -ge 30 ] && app_path="/data/app/*/${i}-*/base.apk"
          [ -d $SYSTEM/priv-app ] && systemize /system/priv-app "${app_path}" || systemize /system/app "${app_path}" "$i"

    This is not tested, but it should work.

    Oh, I see. Well I incorporated your changes and pushed another commit: https://github.com/KreAch3R/terminal_systemizer/commit/bdcae1ea200f579cfe75999d76158da05216a7ad

    I tried systemizing an installed app manually to trigger that part of the code and it worked. I uploaded the new version again.

    @Anurag1994, great, thanks!
    21
    HERE'S A LITTLE VIDEO ON HOW TO USE IT:

    17
    F.A.Q

    Q. Why do I need to systemize apps?
    A. Some apps provide extra functionality as a system app (like Greenify, Launchers, etc). And if you just want an app to be a system app for no reason :).

    Q. Is A/B Devices (Pixel, Essential, MI A1 etc.) supported?
    A. YES

    Q. What's the advantage of using this over the other systemizers?
    A. This one is very light weight (since it's just a script). And it's also very versatile and supports almost all devices.

    Q. Something's not right??
    A. Report in this thread...
    14
    When a systemizied app is updated, how do you re-systemize it? Do you just rerun the terminal UI and choose the updated app and reboot? After reboot, does the updated app replace the old one?
    No, it's like when you update a system app from play store, it stays as a system app. ;)
    No need to do anything if it's updated :good: