Không có mô tả

David ab0e395866 readme 9 năm trước cách đây
.idea 1e1b111bf5 initial commit, working tabs 9 năm trước cách đây
app c473442797 state + volume 9 năm trước cách đây
gradle bce6e7ce4c initial broken 9 năm trước cách đây
.gitignore bce6e7ce4c initial broken 9 năm trước cách đây
README.md ab0e395866 readme 9 năm trước cách đây
build.gradle bce6e7ce4c initial broken 9 năm trước cách đây
gradle.properties bce6e7ce4c initial broken 9 năm trước cách đây
gradlew bce6e7ce4c initial broken 9 năm trước cách đây
gradlew.bat bce6e7ce4c initial broken 9 năm trước cách đây
settings.gradle bce6e7ce4c initial broken 9 năm trước cách đây

README.md

LibreTasker is an event-based task performer, similar to Tasker.

This means that you can trigger Actions when events (filtered on input) occur, taking into consideration current state.

Supported events (and their conditions):

  • Network:
    • Type: Wifi / Cellular / VPN
    • State: Connected / Disconnected
    • SSIDs: List of SSIDs when Type is Wifi
  • DateTime (Similar to cron):
    • Month: List of ints
    • DOM: List of ints (Day of Month, 1-31)
    • DOW: List of ints (Day of Week, 1-7)
    • Hour: List of ints (00-24)
    • Minute: List of ints (00-59)
    • InvertHour: boolean (whether to invert the match on the 'Hour' field)
    • InvertMinute: boolean (whether to invert the match on the 'Minute' field)
  • Screen:
    • OFF: boolean (whether to trigger on ON or OFF )

There's an special event called 'State'. State takes a Key (String) and Value (Object). This gets triggered automatically when an Action with type 'State' changes its value.

Supported Actions (and their parameters):

  • Toast:
    • String (text to display)
  • Notification:
    • , with 2 Pairs: Title and Value, both must be non-null.
    • Beep:
      • None (Plays the default notification ringtone)
    • Volume:
      • Stream (Ring, Alarm, Music, Notification, System), Volume in %
    • State:
      • , set a state key to a value. Will trigger the 'State' special event if the value changed.