Archives

now browsing by author

 

Hey guys, kinda new to LL, was wondering if it would be possible to use a script to switch between different…

Hey guys, kinda new to LL, was wondering if it would be possible to use a script to switch between different desktops I’d use for a lock screen. Can it be done?

]]>

I already mentioned this bug, but i couldn’t explain it wright. I hope this time it will.

I already mentioned this bug, but i couldn’t explain it wright. I hope this time it will.

I have a “second” statusbar “area” on desktop and app drawer. If i disable both settings in systembar settings of desktop (screenshot 1) or app drawer, i get a second “statusbar area”, see screenshot 2,3,4.

Anyone get the same? 

I somehow think it has something to do with the hight of the top bar of the appdrawer.

]]>

Zunish Template for Lightning Launcher updated with two scripted widgets: news and weather forcast.

Zunish Template for Lightning Launcher updated with two scripted widgets: news and weather forcast. (note: Internet Permission for LL needed!)

]]>

Hey guys, new to LL, loving it so far.

Hey guys, new to LL, loving it so far. Quick question…how do I change the format of the clock and the date? I would like it to be 1/19/2016 and 8:15 PM instead of 2015. Any ideas?

HTML question

HTML question

For Jappie Toutenhoofd​​ TrianguloY​​ Pierre Hébert​​

I’m using scripts from Jappie for my Weather View

My link is

http://www.meteobelgium.be/service/4days/index.php?code=8434&type=city&lang=fr&css=http://www.meteobelgium.be/service/4days/sample1.css

I can use a css given by the website but it’s not fine for me.There are only 2 css.

On my PC I know how to redirect to local file but not on the smartphone

On css something like that on my PC

body{background:url(“file:///C:/Users/Bruno/Desktop/beige001.jpg”) top left repeat;}

Do you know how to redirect to local css on my smartphone.

I want to use the same as the sample with some change (like background with my image or with a semi-transparent color)

Help

I know it’s very technic but very interesting

http://www.meteobelgium.be/service/4days/index.php?code=8434&type=city&lang=fr&css=http://www.meteobelgium.be/service/4days/sample1.css
]]>

V12.8.1 issue not present previously.

V12.8.1 issue not present previously. I have Shopkick installed. With this version, I get ‘Application not installed’ incorrectly.

]]>

simpLLe

Originally shared by gerd reuter (werksmannschaft)

simpLLe

for Kustom LWP with Lightning Launcher, Tasker and Whicons

2 Pages, Navigation by Scroll or Tap.

Resolution is 1920×1080 (w/o Navkeys).

Should work with other Resolutions and Navkeys (change Global frombot in KLWP) too.

If you want to use the Preset with another Launcher, you have to do the Notificationstuff and left panel by yourself. All necessary Tools are included with the Taskerproject.

RSS-Feed scrolls up and down with arrows.

Agenda scrolls also up and down with arrows.

Weather scrolls  forward and backwards with arrows.

Apps on Homescreen with missed Notifications are marked underline.

Video:

https://www.youtube.com/watch?v=MFi_N0-HAqk

Will be available soon:

https://play.google.com/store/apps/details?id=de.werksmannschaft.klwp.simpLLe

]]>

how can I load script from sdcard? Copy-paste so annoying.. Thanks

how can I load script from sdcard? Copy-paste so annoying.. Thanks

Hi Jay M​ did you have this issue ?

Hi Jay M​ did you have this issue ?

A permission needed ?

Pierre Hébert​

]]>

I do not know why…just learn #LL scripts

I do not know why…just learn #LL scripts

LL.bindClass(‘java.lang.Runtime’);

LL.bindClass(‘java.io.DataInputStream’);

LL.bindClass(‘java.io.DataOutputStream’);

LL.bindClass(‘java.lang.StringBuffer’);

function runAsRoot(cmd){

try{

var process = Runtime.getRuntime().exec(“su”);

var reader = new DataInputStream(process.getInputStream());

var writer = new DataOutputStream(process.getOutputStream());

writer.writeBytes(cmd+’\n’);

writer.flush();

writer.close();

var tmp;

var output = new StringBuffer();

while((tmp = reader.readLine()) != null){

output.append(tmp+’\n’);

}

reader.close();

process.waitFor();

}catch(err){

return err;

}

return output;

}

]]>