• just found,
    keeping swipe back to clock as Lt to Rt swipe,
    and make back swipe as Rt to Lt swipe is the best choice,
    keeping up and down swipe for choosing things.

    do so by modifiying the lr === 1 into lr === -1 below

    function goBack(lr, _) {
        // if it is a left to right swipe
        if (lr === 1) {
          // if we're in an app that has a back button, run the callback for it
          if (global.BACK && countHandlers("swipe")<=settings.standardNumSwipeHandlers && countHandlers("drag")<=settings.standardNumDragHandlers) {
            global.BACK();
          }
    
    }
    

    }

About

Avatar for ccchan @ccchan started