Can somebody doing script for this?

Can somebody doing script for this?

Skip the desktop that is set as a locked screen. (for gestures two finger left or right).

After use this script is only one way, how go to this screen – in settings LL – go to config screens.

]]>
(Next Post) »

5 Commentsto Can somebody doing script for this?

  1. Anonymous says:

    < ![CDATA[

    TrianguloY Lukas Morawietz Can you please write this script?

    ]]>

  2. Anonymous says:

    < ![CDATA[

    I understand the first part, skip the lock screen when changing desktops.


    But I don’t understand the third paragraph.

    ]]>

  3. Anonymous says:

    < ![CDATA[

    hehe, if working this new script, user cannot go to screen (set as locked screen) directly (those this script). User must go to configure screen and select locked screen, now is in this screen and can edit this screen.

    ]]>

  4. Anonymous says:

    < ![CDATA[

    Oh, ok.



    var desktopsarray=LL.getAllDesktops();


    var desktops=[];


    var currentid=LL.getCurrentDesktop().getId();


    var currentat=-1;



    var lockscreenid=LL.getLockscreenDesktop();


    if(lockscreenid!=null)lockscreenid=lockscreenid.getId();



    var p=0;


    for(var t=0;t


    var id=desktopsarray.getAt(t);


    if(id==lockscreenid)continue;


    if(id==currentid)currentat=p;


    desktops[p++]=id;


    }



    var source=LL.getEvent().getSource();


    if(source==”C_SWIPE2_RIGHT”){


    currentat=(currentat+1)%desktops.length;


    }else if(source==”C_SWIPE2_LEFT”){


    currentat=(currentat-1+desktops.length)%desktops.length;


    }else{return}



    LL.goToDesktop(desktops[currentat]);

    ]]>

  5. Anonymous says:

    < ![CDATA[

    Thanks, working very well. Maybe you can add this script to repository As skippingLockedScreen

    ]]>

Leave a Reply

Your email address will not be published. Required fields are marked *