[5.1m] How to turn on status bar icon? - Tasker Tips & Tricks

Hello, I have version 5.1m on Android 7.0, I can't find any setting for turning on status bar icon in the preference. Can anyone help me pointing it where it is?
Thanks.

I'm pretty sure it's all different for different phones, but I got mine by listing
adb shell settings list secure
adb shell settings list system
adb shell settings list global
all into one file. Then I turned off one of the status bar icons, and repeated the above into another file.
"diff file1 file2" found that my setting was "secure icon_blacklist." This lists the icons you have turned off.
So use SecureTask to Read the value into a variable, then Search and Replace the icon you want on with "", then Write the new variable into the setting.

kuromusha38 said:
Hello, I have version 5.1m on Android 7.0, I can't find any setting for turning on status bar icon in the preference. Can anyone help me pointing it where it is?
Thanks.
Click to expand...
Click to collapse
I think you are asking for tasker's notification icon. Preferences -> monitor -> general heading
"Good judgment comes from experience, and a lot of that comes from bad judgment." - Will Rogers

Related

Click on icons from top bar (connection, battery...) brings up fullscreen version

Sorry for the confusing title, but I don't have idea how to describe what I mean.
In the default rom, when I clicked on the top bar in tf3d where the icons with battery status, network status or appointment are, it brought up a fullscreen something (similar to volume screens) with big icons for battery status, network, appointment and so on. Than I tried a few versions of RomeOS, I don't know which versions had that working, but it doesn't work in current version. I think it's one of the cabs that can be downloaded for RomeOS, but I don't have idea which one is it.
Does anyone know?
Thank you.
There's a registry key that enables it i believe, not sure where though
Start -> Settings -> System Tab -> TouchFlo
Check box for showing system status.
Thanks, it would be great if someone knows which key it is.
JoeTheFro - thanks, when I was posting my post above, I didn't see yours. That worked, thanks again.
Ah my bad. I think I was referring to how you change from the classic volume control to the big HTC one. I remember now though

[HowTo] Hide the Navigation & Status Bars on Your Galaxy S9 — No Root Needed

Putting your Galaxy S9 in Immersive Mode lets you truly enjoy the gorgeous display that Samsung is so famous for. You can't have it set on at all times, however, so you'll still have to deal with the status and navigation bars that cut the phone's aspect ratio down to that of a standard phone. But if you're willing to dig a little deeper, there are ways to go full Immersive Mode on your S9 for good.
The good news is the S9 and S9+ now let you hide the navigation bar by double-tapping the tiny circular button on the left side of the navigation bar, giving you more screen space to enjoy content. You're still left with the status bar to deal with, however, and while it's transparent when on the home screen, the status bar will often turn opaque depending on that app you're currently using.
Thankfully, it's possible to hide your Galaxy S9's status bar and go full immersive using a method that's been out for a while. Though the process doesn't require root, you'll need to run an ADB command. Keep reading further if you want to get the most out of your S9's gorgeous display — just be sure to follow the steps exactly as they appear, especially if this is your first time with ADB and Fastboot.
Requirements
Developer options and USB debugging enabled
Windows, Mac, or Linux computer
ADB and Fastboot installed
USB data cable
Step 1 Allow USB Computer Connection
After installing ADB and turning on USB Debugging, connect your Galaxy S9 to your computer with a USB data cable. Next, swipe down from the top of your screen and select the "Android System" notification, then choose "Transfer files" from the popup.
Step 2 Open ADB
Running an ADB command is necessary hide the S9's status bar to keep it on Immersive Mode at all times. Because of this, you'll need to open a Command Prompt or Terminal window in the platform-tools folder inside of your ADB installation directory.
If you downloaded the SDK Tools from Google and did a default installation, go to the C:\Program Files (x86)\Android\android-sdk folder. If not, go to the folder where you installed ADB, then open the platform-tools folder located inside. Now, hold the shift button on your keyboard, then right-click within the window and choose "Open command window here."
If you have a Mac or Linux machine, open a Terminal window and change directories to the platform-tools folder. Perform a search on your hard drive for "platform-tools" if you don't know where it is, as the folder's exact location can vary depending on where you extracted ADB and Fastboot when the utilities were installed.
Step 3 Input Commands
Now that a connection has been established with the S9 and ADB is up and running, you'll need to type in a single command to hide the status bar at the top of the screen, so enter the following:
Code:
adb shell settings put global policy_control immersive.status=*
Step 4 Enjoy Full-Time Immersive Mode
Immediately after sending the above command, your status and navigation bars will disappear. At this point, it would be a good idea to restart your phone so that any apps that were previously open can redraw themselves to accommodate the extra screen real estate.
From now on, you'll still be able to access the navigation and status bars on your S9 by swiping in from either the top or bottom of the display, depending on which one you wish to access. The keyboard will still pop out as it normally does whenever you tap on a box that requires text input, and the home button's haptic feedback still remains active, but you'll need to reveal the navigation buttons to access Google Assistant.
Reverting This Mod
If you ever want to bring your S9 back to its stock configuration and re-enable the status bar, simply type in the following command to bring the display back to its original settings:
Code:
adb shell settings put global policy_control null*
Does this hide the navigation bar even in home screen?
What if I only want to hide the navigation bar, but not the status bar?
Thanks.
bethedealer said:
Does this hide the navigation bar even in home screen?
What if I only want to hide the navigation bar, but not the status bar?
Thanks.
Click to expand...
Click to collapse
Here you go:
· Hide Status Bar only type:
Code:
adb shell settings put global policy_control immersive.status=*
· Hide Navigation Bar only type:
Code:
adb shell settings put global policy_control immersive.navigation=*
· Hide Both Bars type:
Code:
adb shell settings put global policy_control immersive.full=*
+ Immersive in all apps except certain apps
Code:
adb shell settings put global policy_control immersive.full=apps,-"app location",-"another app location"
+ Immersive in all apps but with certain apps having Status bar not hidden
Code:
adb shell settings put global policy_control immersive.navigation=apps,:immersive.status=apps,-"app location",-"second app location"
Ex:
Code:
adb shell settings put global policy_control immersive.navigation=apps,:immersive.status=apps,-com.whatsapp
+ Immersive in all apps but with certain apps having Navigation bar not hidden
Code:
adb shell settings put global policy_control immersive.status=apps,:immersive.navigation=apps,-"app location",-"second app location"
Ex:
Code:
adb shell settings put global policy_control immersive.status=apps,:immersive.navigation=apps,-com.whatsapp
I try to disable the navigation bar on a S9+ and don't work for me.
Enviado desde mi SM-G965F mediante Tapatalk
There is a much easier way. Install BxActions and you get the option to press bixby button to enter inmmersive mode. No root needed
negrata said:
I try to disable the navigation bar on a S9+ and don't work for me.
Enviado desde mi SM-G965F mediante Tapatalk
Click to expand...
Click to collapse
I wasn't able to hide it in the first S9 I had and can't hide it on this one either. I can hide the status bar but not the navigation bar. If I use the code to hide both it makes the status bar show but does not hide the navigation bar. I have tried multiple times. When I put in the command for both or even just the navigation bar, it disappears for a micro second like a flash, and then is still there. I have even installed System Ui Tuner and get the same results. It's weird and it's driving me crazy. Was able to hide both just fine with the S8, S8+, and the Note8.
Just another update. I have tried this on 3 different S9's with no lu k. I can only hide the status bar but not the navigation bar. I was able to do it on the S8, S8+, and the Note 8 and on 2 LG V30's. I guess maybe I'm not supposed to have the navigation bar hidden on an S9.
To hide nav bar instantly use adb and hide using the command
adb shell wm overscan 0,0,0,-120
If not hiding properly then change value 120 and see the difference.
I tried this on my s9 plus and its working.
This code is not found by me instead i got it by googling and searching after long time.
Sent from my SM-G965F using XDA Prem ium HD app
Massive thank you from me. This has made the S9 so much more appealing on the eyes. :victory:
Now just need Samsung to pull their finger out and do something about the Navbar below the keyboard while typing. So annoying!
No way to hide the nav bar on the homescreen yet?
EDIT - Unfortunately hiding the status bar using this command breaks WhatsApp partially, emoticon panel is broken and can't see the top status bar above chat where you see the last seen time of the recipient unless the keyboard is hidden
truckerdewd said:
Just another update. I have tried this on 3 different S9's with no lu k. I can only hide the status bar but not the navigation bar. I was able to do it on the S8, S8+, and the Note 8 and on 2 LG V30's. I guess maybe I'm not supposed to have the navigation bar hidden on an S9.
Click to expand...
Click to collapse
It works mate, but on home screen can't hide nav bar, also under keyboard while typing unfortunately.
denistina:) said:
It works mate, but on home screen can't hide nav bar, also under keyboard while typing unfortunately.
Click to expand...
Click to collapse
On the Note8, S8, S8+,and the V30, the nav bar could be hidden on the home screen but on 3 different Galaxy S9's I had no luck. I have it hid on the home screen on my wife's Note8,I did it when she got it back in Oct when it was still on Nougat. The S8, S8+, and both V30's were also on Nougat when I was able to auto hide the nav bar via ADB commands and the the 2nd V30 and my wife's Note8 stayed like that after the update to Oreo so it is possible that it is a thing in Oreo for Samsung devices that are already on Oreo prior to doing the ADB commands.
I can do it just fine on my current phone which is an LG G7 ThinQ running Oreo just fine so it is most likely something in to Samsung software that is preventing it.
Are you guy still interested in remove navigation bar
https://forum.xda-developers.com/galaxy-s9/how-to/remove-replace-navigation-bar-t3813885/post77020140#post77020140
The best way for me so far
I tried almost all app to remove and replace the navigation bar for my Samsung S9 but all of them facing serval crop screen and app UI issue. For example Samsung Internet new tabs alignment, Crop grey backgound when windows popping up (I will attache screenshot below.)
And now I think I found the best way so far to fix all these issue
- "Oneplus Gestures" is best one for me for the alternative app to replace the navigation bar because not like others, the pill of this app is always at the bottom (not shift) and it work on overlays app (ex: FB messenger)
- "Hide Nav Bar" is the app that I choose to remove the native nav bar but for now it has some issue which cropping some app and I have solution for that. You have to enable global immersive mode then exclude the apps that cropped. So far I found these apps need to exclude: Smart Capture, Edge Widget, Instagram, Gallery. By filter immersive mode for these app you could use "Immersive Mode Manager" app or just write this adb command
Code:
adb shell settings put global policy_control immersive.navigation=apps,-com.samsung.android.app.smartcapture,-com.samsung.android.app.widgetedge,-com.instagram.android,-com.sec.android.gallery3d
- Not finish yet, the fix other UI issue (Samsung Internet, Gallery) you need to use "Routines" app belong to Good Lock 2018 app to use Samsung Hide Nav Bar for Samsung Internet and Gallery app.
Then enjoy your edge to edge screen with gesture navigation. This work around fix all my issue when remove and replace navigation bar on my S9. If you find other issue feel free to discuss.
View attachment 4545422
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Xperience Z said:
Here you go:
· Hide Status Bar only type:
Code:
adb shell settings put global policy_control immersive.status=*
· Hide Navigation Bar only type:
Code:
adb shell settings put global policy_control immersive.navigation=*
· Hide Both Bars type:
Code:
adb shell settings put global policy_control immersive.full=*
+ Immersive in all apps except certain apps
Code:
adb shell settings put global policy_control immersive.full=apps,-"app location",-"another app location"
+ Immersive in all apps but with certain apps having Status bar not hidden
Code:
adb shell settings put global policy_control immersive.navigation=apps,:immersive.status=apps,-"app location",-"second app location"
Ex:
Code:
adb shell settings put global policy_control immersive.navigation=apps,:immersive.status=apps,-com.whatsapp
+ Immersive in all apps but with certain apps having Navigation bar not hidden
Code:
adb shell settings put global policy_control immersive.status=apps,:immersive.navigation=apps,-"app location",-"second app location"
Ex:
Code:
adb shell settings put global policy_control immersive.status=apps,:immersive.navigation=apps,-com.whatsapp
Click to expand...
Click to collapse
So how do I hide the Status bar everywhere except on my home screen? Using Nova Launcher it is needed.
---------- Post added at 12:27 PM ---------- Previous post was at 12:09 PM ----------
NVM got it.
Rule n5
5. Create a thread topic or post a message only once, this includes external links & streaming media.
As a large forum, we don't need unnecessary clutter. You're free to edit your message as you like, so if you do not receive an answer, revisit your message and see if you can describe your problem better. Not everyone is online at the same time so it might take a while before you receive an answer.
You can bump your unanswered question once every 24 hours
Duplicate threads and posts will be removed
Always post in an existing thread if a topic already exists, before creating a new thread.
Use our search function to find the best forum for your device.
Links to an external source are only allowed if relevant to the topic in hand. A description must be included, no copy & pasting from the original source.
Self-promotion is forbidden, this includes blogs, social media and video channels etc. Random links will be removed.
Since this thread is a copy/paste from original source, is now closed!

Toggle Samsung Smart Stay with Tasker

I'd like to know if anyone can help me out with toggling Smasung Smart Stay with Tasker. I haven't found any solution to make it happen (not including outdated SmartTools plugin).
Thanks.
Describe how this is done manually. Is there a shortcut, quick setting toggle or do you have to open an app?
This being a Samsung special feature, it's unlikely there is an intent to do what you want so your probably stuck using a shell action with an input tap command or the auto input plugin.
"Good judgment comes from experience, and a lot of that comes from bad judgment." - Will Rogers
Yeap, seems like I'll need to use Auto Input (Settings -> Advanced features -> Smart stay (toggle)). I was just hoping there is a working plugin to set it "directly" (without visual actions). An adb/shell command is a good option too ...
allidea said:
Yeap, seems like I'll need to use Auto Input (Settings -> Advanced features -> Smart stay (toggle)). I was just hoping there is a working plugin to set it "directly" (without visual actions). An adb/shell command is a good option too ...
Click to expand...
Click to collapse
A quick search of google before I posted didn't turn up anything. Since I don't use Samsung devices, I have no way to explore for you. The only thought I have is maybe a "settings get/settings put" action might exist. This is a typical way to replace secure settings actions on MM and above. You'd have to explore if that's an option on your device . This redid post should help.
Else, maybe it can be added to the auto tools plugin. You could ask at their forum.
"Good judgment comes from experience, and a lot of that comes from bad judgment." - Will Rogers
Thanks for your efforts. If I manage to find corresponding SmartStay setting name this could be easily solved.

Removing Status Bar

Does anyone know how to remove the status bar? I managed to do this on my S8(G950U) and I don't remember how. It disappeared until I swiped down like I was looking at notifications.
Dreadsta5889 said:
Does anyone know how to remove the status bar? I managed to do this on my S8(G950U) and I don't remember how. It disappeared until I swiped down like I was looking at notifications.
Click to expand...
Click to collapse
I use system ui tuner to enable immersive mode for that.
Sent from my SM-N960U1 using Tapatalk
Thanks
Easy Fix No Root
Go to the Galaxy Apps store. Find Good Lock 2018. Then through that install QuickStar. All Samsung Apps that finally provide more control. Just got my Note 9 and hate the status bar on such a gorgeous screen. This was simple with no bugs.
Dreadsta5889 said:
Does anyone know how to remove the status bar? I managed to do this on my S8(G950U) and I don't remember how. It disappeared until I swiped down like I was looking at notifications.
Click to expand...
Click to collapse
Easier solution I got from one of the threads was using Bxactions. I already have that installed for the dreaded Bixby button, so I just remap one of the clicks of the option of hiding the navigation and status bar. Works like a charm and a click again brings you back to your status bar!
https://forum.xda-developers.com/ga...te-9-debloat-customization-t3833217?nocache=1
Post #1. You have to do ADB commands per the procedure outlined in the links. That's what I did with my Note 9. I just never have the need to see my status bar always, all the time, everytime.
Sent from my crownlte using XDA Labs
try changing your wallpaper, that did it for me.
You can install an app called fluid (app store)
Then you can disable the status bar with ADB commands... In the app you have the instructions
Substratum System Mods is The best way to do it.
Nova Launcher will allow you to hide it, no bs with adb commands and such. Just one of many options I see suggested.
Try to hide the top bar according to this guide:
https://forum.xda-developers.com/galaxy-note-9/themes/removing-status-bar-t3834180
Code:
C:\adb>adb shell settings put global policy_control immersive.status=*
error: device unauthorized.
This adb server's $ADB_VENDOR_KEYS is not set
Try 'adb kill-server' if that seems wrong.
Otherwise check for a confirmation dialog on your device.

S10: How can I set the navigation bar to black or dark grey?

Hi, would like to color the navigation bar, except an app colors its own color.
Is there a way to do on S10/S10+?
Got it
Same way as on S8, S9 since Android 8 Oreo. Works.
How did you do it? ADB command? Samtweaks?
https://forum.xda-developers.com/galaxy-s8/themes/change-navigation-bar-colors-t3622626
Yes. You can do it also with Tasker, as long as Tasker has the adb-permissions.
Download the app "Status bar", it works perfectly and without root.
But "status bar" is not "navigation bar".
Oh yeah my bad, mixed up navigation and notification bar lol
Edit: "Navbar apps" seems to do the trick.
Best solution is via adb, see post #2 and #4
How do I do that? I'm a noob so need to know how I give adb permission, I want to try samtweak2.
Thanks
Edit: I figured it out but nothing changes when I change color, also when I use adb shell commands nothing happens, how did you change the navigation bar color?
I used the two adb commands (through Tasker, but this should not be important)
Thanks for the reply, can you share the exact commands you used, because whatever I use doesn't work. I did it via PC.
See here:
https://forum.xda-developers.com/galaxy-s8/themes/change-navigation-bar-colors-t3622626
I used the first two commands.
Before you can choose a color, see link in that tutorial.

Categories

Resources