add features on A12 beta - Google Pixel 4a 5G Themes, Apps, and Mods

Use adb, or one of my favorite apps LADB so you can do this directly from your phone. Once you're in the ADB shell:
Cmd device_config put wallpaper_content G_WALLPAPER_GALLERY true
Cmd device_config put launcher ENABLE_SMARTSPACE_ENHANCED true
The first one gives you some hidden wallpapers in the Google wallpapers app, and the second changes your at a glance widget and gives you a menu to enable or disable features however it's not complete yet, but personally I hate the Giant at a glance widget and prefer this one.
Adittionally, you can check out a list of other things to experiment with by entering cmd
device_config list

Related

terminal on wave

actually i hv two phone right now, one is wave and another is n900.
on n900, the terminal is used alot in the hacking/modifying the os(maemo5).
wave also has terminal app(paid) but i was wondering the same level of modifying can be done(although bada still hv lot of restriction regarding hacking) .
and i just cr8 this thread in case the wave hackers here missed the terminal app, coz in my n900 its so powerful.
i hope something can be done through this
please give a link to that app in samsung apps
~MaX~ said:
please give a link to that app in samsung apps
Click to expand...
Click to collapse
Your kidding right?? Did you even read this post??
just search "terminal" in your wave, i found it through my phone, not through the computer. its in utilities category.
pls try to use it, and give feedback if it potentially can be used to do some hacking to bada.
Hi, all here is a description of a Terminal Application:
This application is a command prompt that has the following commands:
List commands Directory/File :
cd Change Directory
pwd Display current directory
dir Directory contents
copy Copy file
move Move file
List commands System :
memory Display the memory information
battery Display the battery information
vibrator Vibrates the device
time Display time
settinginfo Display the setting information
systeminfo Display the system information
-List commands network :
connect Connecting to a server
send Sending message to a server
dns Resolve a domain name
List commands Other :
help Display this help
color Change the color of text/background
clear Clear terminal
exit Exit this application
echo Displays messages or enables/disables the display of commands
prompt Change the terminal prompt
editscript Edit/construct a script
loadscript Execute a script
sleep Suspends the execution of terminal
while Execute a command x times
For the help of a command, put -h in command argument.
WRITE "terminal" on the phone, in the search of Samsung app and download this app.
Video Here: youtube.com/watch?v=PEHBGmF23Lo
so this app dont have acces to system ?
That looks appealing BUT
it is limited to what the bada sdk can offer...
You're not going to be able to jail break out of bada.... it's in a similar position as motorola in that regard in locked bootloader etc etc so the jail break will never happen in a terminal unless... there's some exploit somewhere in the libs....
there's plenty of api's to read the directory etc....

Restart Kodi 'shortcut' and other stuff (solved)

If you're like me, Kodi gets hung-up sometimes. If you sideload 'Terminal Shortcut Pro' from the play store, you can create a shortcut icon on the home screen using Nova Launcher (and other launchers I presume) to force-stop Kodi and restart it with one click. You can also use the app to launch your saved commands. And the app works perfectly on the FireTV including navigation with the remote.
https://play.google.com/store/apps/details?id=de.hp.terminalshortcut
Open the app and click the plus sign to add a new command, type the below commands and tell it ro run as su.
Then create a shortcut on the homescreen to your specific command using Nova.
RESTART KODI:
am force-stop org.xbmc.kodi
am start -n org.xbmc.kodi/.Splash
Other commands you can create shortcuts for:
KILL-ALL (kills all background apps):
am kill-all
And I'm sure there are other terminal 'shortcut' commands that folks can think of...delete thumbnails, block updates, etc.
Has anyone found an app that can do this yet? Without using the shortcuts/different home launcher? I have been looking for a app which kills all apps running or something similar but have not had any joy for my Rooted Fire Tv2?
You can use Terminal Shortcut for that i think. Just create the am kill-all command. You will just open the app and then click the command. Have to be rooted for it to work tho im pretty sure...
tdfsu said:
You can use Terminal Shortcut for that i think. Just create the am kill-all command. You will just open the app and then click the command. Have to be rooted for it to work tho im pretty sure...
Click to expand...
Click to collapse
I tried both commands today, but just comes back with an error???? I'm rooted, on AFTV2 with Busybox, & kodi running off my SD card, I typed the commands exactly as you wrote but dunno why it wont work? Have you any ideas mate?
I installed this appmanager which allows you to launch apps then go to a settings menu to force closed pretty quick.

Recent Apps Card Style

Hi,
Is there a ADB command line that would revert the recent menu in a card style menu? Instead of the limited 8 apps only?
I tried looking for it but i might not be searching correctly. I have change this in the past (I think) but i can't remember if it was a custom ROM feature or a ADB command line...
Thanks for any feedback
To answer my own question...
In the build.prop, the line we need to change in order to have the recent apps in a card style instead of the 8 only recent apps.
ro.recents.grid=true
Change true to false
Is there a way to edit that line through an Adb command without Root permissions?

Question Rotation Suggestion Button on Xiaomi.EU ROM?

Android 9 added a new feature which allows for the temporary rotation of the screen, with the press of a button would appear when the phone is put into landscape orientation. MIUI for some reason has decided to exclude it, we're at Android 11 and it still doesn't have it. I was wondering if Xiaomi.EU ROM has this feature, or would I have to go with a custom ROM?
do you use tasker? could try the auto-rotate for chosen apps profile found in this thread.
i used it fine for both ROG phone II and this Alioth phone. i just set it for maps, youtube vanced etc.
works great. not sure i'd recommend the other profiles, they may well be device specific
reg66 said:
do you use tasker? could try the auto-rotate for chosen apps profile found in this thread.
i used it fine for both ROG phone II and this Alioth phone. i just set it for maps, youtube vanced etc.
works great. not sure i'd recommend the other profiles, they may well be device specific
Click to expand...
Click to collapse
Cool, this could be a workaround for my issue, just enabling rotation in some apps. I'll try it out, thanks!
It might be a late reply, but in terminal emulator as root you can type this command: "settings put secure show_rotation_suggestions 1" without the quotes and it will enable rotation suggestions when you rotate the screen. You can also use this same command in FKM scripts section and set it to run on boot. If you're not rooted then you must use adb shell on a PC with adb debugging enabled in developer options and use this command: " pm shell settings put secure show_rotation_suggestions 1" without the quotes. After a reboot the setting is disabled again so you have to run the command after each reboot.
pawelmiernik said:
It might be a late reply, but in terminal emulator as root you can type this command: "settings put secure show_rotation_suggestions 1" without the quotes and it will enable rotation suggestions when you rotate the screen. You can also use this same command in FKM scripts section and set it to run on boot. If you're not rooted then you must use adb shell on a PC with adb debugging enabled in developer options and use this command: " pm shell settings put secure show_rotation_suggestions 1" without the quotes. After a reboot the setting is disabled again so you have to run the command after each reboot.
Click to expand...
Click to collapse
THANK YOU SO MUCH! This has always been one of the reasons I hated MIUI, now I finally get to enjoy this feature that MIUI has chosen to hide for some reason!
CharlieMHz said:
THANK YOU SO MUCH! This has always been one of the reasons I hated MIUI, now I finally get to enjoy this feature that MIUI has chosen to hide for some reason!
Click to expand...
Click to collapse
Ikr it's such a useful thing to have!
@pawelmiernik I just registered to say that you are a frigging legend, thank you so much!
Absolutely idiotic that they left out this option somewhere in the settings. Especially when you can reactivate the already implemented button with such a workaround. Ridiculous.
pawelmiernik said:
It might be a late reply, but in terminal emulator as root you can type this command: "settings put secure show_rotation_suggestions 1" without the quotes and it will enable rotation suggestions when you rotate the screen. You can also use this same command in FKM scripts section and set it to run on boot. If you're not rooted then you must use adb shell on a PC with adb debugging enabled in developer options and use this command: " pm shell settings put secure show_rotation_suggestions 1" without the quotes. After a reboot the setting is disabled again so you have to run the command after each reboot.
Click to expand...
Click to collapse
Thanks for this, would like to add that another way of having it persist is to use SetEdit and add show_rotation_suggestions 1 to the secure table. You'll need to give the SetEdit app permissions to write to the secure table. You can do it with root but if you're not rooted you can use adb, just be sure to enable "usb debugging (security settings)" as well.
pawelmiernik said:
It might be a late reply, but in terminal emulator as root you can type this command: "settings put secure show_rotation_suggestions 1" without the quotes and it will enable rotation suggestions when you rotate the screen. You can also use this same command in FKM scripts section and set it to run on boot. If you're not rooted then you must use adb shell on a PC with adb debugging enabled in developer options and use this command: " pm shell settings put secure show_rotation_suggestions 1" without the quotes. After a reboot the setting is disabled again so you have to run the command after each reboot.
Click to expand...
Click to collapse
Just to add on to this, for me, the settings stayed even after a restart, so I didn't need to run it again after reboot.
I think it's because they added this to MIUI 13. I recently bought a POCO F3 and it had it built in. Finally. There is hope in this world.
Weslington9 said:
I think it's because they added this to MIUI 13. I recently bought a POCO F3 and it had it built in. Finally. There is hope in this world.
Click to expand...
Click to collapse
How to turn on this feature, I am on miui13 but can't find it ?

[Guide] Getting the Most out of your S20FE

Here's a guide to help you make the most out of your phone
Guides below can be followed by both rooted and unrooted users
Debloat list: https://paste.rs/OLC
Debloating guide:
1) Download Google platform-tools (ADB and fastboot) from here for the operating system you are using on your computer, I will be using Windows for this guide, and extract the zip file to the root directory of your drive in its own folder (For example, C:\platform-tools, inside of the platform-tools folder you should see ADB and fastboot executables as well as other files).
2) On Windows, download and install the Samsung USB Drivers from here, I don't believe other OSes have to do this.
3) On your phone, go to Settings > About phone > Software information and tap Build number 7 or 8 times until you get a pop-up notification saying "Developer options have been enabled."
4) Go back out to the main Settings menu where you will notice a new option called "Developer options". Tap it and scroll down a little bit until you find USB Debugging, turn this option on and keep your phone unlocked (don't turn off the screen).
5) Plug your phone into your computer and open Command Prompt or Terminal and type cd C:\platform-tools and press Enter (Command will differ for the OS you're using).
6) Type ADB devices, give it a few moments, and check your phone for an ADB connection authorization prompt, check the box that says "always allow..." so you don't have to do this every time you want to use ADB.
7) Type ADB shell, the prompt should change from "C:\platform-tools\>" to something like "<phoneserialnumber>:/"
8) Either highlight all of these commands and paste them into the Command Prompt by right-clicking or highlight one command at a time and paste them in one by one
*************************************
Apps:
1)Naptime(Better Battery Life)
2)Galaxy Max HZ(Helps you change the refresh rate of your phone's display)
------------------------------------------------------------------------------------------------------------------------------------------
For rooted/Unlocked Devices only:
Twrp for Exynos
Kernel for Exynos
Remove Bootloader Warning(Exynos only)
Twrp for Snapdragon
Kernel for Snapdragon
*************************************
Magisk Modules:
Nuked Script: This module includes some scripts that will disable some services on all the apps on your device in order to avoid substantial wake-lock battery drain because your apps send some useless usage and information to GOOGLE and this amazing module will stop that.
Download
SAMSUNG GENERAL PATCHER: This Lets you use most Samsung apps on rooted devices
Download
Universal GMS Doze: Optimizes Google Play services.
Download
Safetynet-fix: fixes the SafetyNet.Install riru and enable magisk hide before installing this module
Download
NFS-Injector: This module aims to improve kernel/ram management between efficiency and energy-aware. Using a complex algorithm, determine the most optimal settings between battery and performance for your device.
Download
Telegram Group link if you need help: http://t.me/S20FeModding

Categories

Resources