Before Oreo I could make the navbar whatever color and change the transparency. After it changed to the default black bar and won’t change no matter what I do in the settings. Did oreo remove this ability or is there a bug in Lightning Launcher?
]]>
its easy copy the script from the post below to clipboard then paste it into the lightning script editor application (should be in your app drawer) next swipe from left side of screen in the script editor app to view the navigation drawer give the script a name (optional) under categories check the box that says lightning menu exit the script editor go back to homescreen long press screen screen and choose script’s and pick my script.
Thank you but that still didn’t work. Well it does but the black nav bar overlays the lightning launcher one. I noticed when I unlocked my phone there was colored bar briefly on the screen (the settings I set for the navbar) but then the black bar covers it up. So I decided to try downloading lightning launcher on my husband’s LG G6 and I getting the same results. So for some reason lightning launcher isn’t handleing the navbar right on the LG G6. The default one covers it up.
This seems to ba an issue with LG phones. I have seen complaints about Lawn chair launcher and pixel launcher having the same issue on the LG G6 and LG v30. Something to do with the scaling and apps not showing up in the list that allows you to change the scaling for an app.
< ![CDATA[
no problem on Oreo on my Note 8, try my colored barz script
]]>
< ![CDATA[
Thanks but I don’t know how to use scripts. Maybe it’s because I have an LG G6?
]]>
< ![CDATA[
its easy copy the script from the post below to clipboard then paste it into the lightning script editor application (should be in your app drawer) next swipe from left side of screen in the script editor app to view the navigation drawer give the script a name (optional) under categories check the box that says lightning menu exit the script editor go back to homescreen long press screen screen and choose script’s and pick my script.
]]>
< ![CDATA[
//System bar color changer
var defaultColor = 0xffff5722; // LL Orange
var desktop = LL.getCurrentDesktop();
var property = desktop.getProperties();
var editor = property.edit();
var choice = prompt(“1 = Use same color for both bars\n2 = Use different colors for each bar\n3 = Use Lightning Launchers Orange”, “”);
if (choice == 3)
{
editor.setInteger(“statusBarColor”, 0xffff5722);
editor.setInteger(“navigationBarColor”, 0xffff5722);
editor.commit();
Android.makeNewToast(“Excellent choice!”, true).show();
}
if (choice == null)
{
//Android.makeNewToast(“null selected”, true).show();
}
else if ((choice != 1) && (choice != 2) && (choice != 3))
{
Android.makeNewToast(“Use only 1 2 or 3”, true).show();
}
else if (choice == 1)
{
//Android.makeNewToast(“1 selected”, true).show();
var barsColor = LL.pickColor(“Statusbar and Navbar Color”, defaultColor, true);
if (barsColor != null)
{
editor.setInteger(“statusBarColor”, barsColor);
editor.setInteger(“navigationBarColor”, barsColor);
editor.commit();
}
}
else if (choice == 2)
{
Android.makeNewToast(“Statusbar color”, true).show();
var statusColor = LL.pickColor(“Statusbar Color”, defaultColor, true);
if (statusColor != null)
{
Android.makeNewToast(“Navbar color”, true).show();
editor.setInteger(“statusBarColor”, statusColor);
editor.commit();
var navbarColor = LL.pickColor(“Navbarbar Color”, defaultColor, true);
if (navbarColor != null)
{
editor.setInteger(“navigationBarColor”, navbarColor);
editor.commit();
}
}
}
]]>
< ![CDATA[
Thank you but that still didn’t work. Well it does but the black nav bar overlays the lightning launcher one. I noticed when I unlocked my phone there was colored bar briefly on the screen (the settings I set for the navbar) but then the black bar covers it up. So I decided to try downloading lightning launcher on my husband’s LG G6 and I getting the same results. So for some reason lightning launcher isn’t handleing the navbar right on the LG G6. The default one covers it up.
]]>
< ![CDATA[
try thishttps://lh3.googleusercontent.com/nZzOgNkAFiOjSz2GDJpxA0xNVutGYJ-PAbILHhm3iX_uIu9wWKAc-siU249Vouwbk_ejHkfdDQ
]]>
< ![CDATA[
I tried to do that too but Lightning Launcher isn’t listed in the list.https://lh3.googleusercontent.com/lPaBWMkZWsRhg0_v8cSLWjzpN90T7FxXOvnfvL3vR8NHZ4t_g3fcKj4T68TNXaVPjansVrxUMlw
]]>
< ![CDATA[
Sorry that is so blurry. I don’t know why.
]]>
< ![CDATA[
might of been on data there’s a switch in G+ settings if its on it saves data but usually fucks up the image.
]]>
< ![CDATA[
This seems to ba an issue with LG phones. I have seen complaints about Lawn chair launcher and pixel launcher having the same issue on the LG G6 and LG v30. Something to do with the scaling and apps not showing up in the list that allows you to change the scaling for an app.
]]>