Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steventango/google-tasks-scripts
Google App Scripts for Google Tasks
https://github.com/steventango/google-tasks-scripts
google-tasks tasks
Last synced: 2 months ago
JSON representation
Google App Scripts for Google Tasks
- Host: GitHub
- URL: https://github.com/steventango/google-tasks-scripts
- Owner: steventango
- License: mit
- Created: 2022-05-03T15:42:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-20T06:44:33.000Z (about 1 year ago)
- Last Synced: 2023-11-20T08:12:42.623Z (about 1 year ago)
- Topics: google-tasks, tasks
- Language: JavaScript
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# google-tasks-scripts
Google App Scripts for Google Tasks## count.gs
Google App Script for counting tasks in a tasklist.### Usage
1. Run `list_tasklist_indentifiers()` to get the tasklist `id` for the `TASKLIST_ID` constant.
2. Add a Trigger that runs function `icebox()` with Time-driven event source and configure it as desired.## icebox.gs
Google App Script for managing stale tasks.### Usage
1. Run `list_tasklist_indentifiers()` to get the tasklist `id` for the `SOURCE_TASKLIST` and `TARGET_TASKLIST` constants.
2. Edit `ICEBOX_UNDATED_DELAY` constant which specifies the minimum amount of time in milliseconds before tasks without due dates are moved from `SOURCE_TASKLIST` to `TARGET_TASKLIST`.
3. Edit `ICEBOX_OVERDUE_DELAY`constant which specifies the minimum amount of time in milliseconds before overdue tasks are moved from `SOURCE_TASKLIST` to `TARGET_TASKLIST`.
4. Edit `THAW_DELAY` constant which which specifies the minimum amount of time in milliseconds before task due dates are moved from `TARGET_TASKLIST` to `SOURCE_TASKLIST`.
5. Add a Trigger that runs function `icebox()` with Time-driven event source and configure it as desired.