No description
Find a file
2023-08-29 20:03:18 +09:00
src leafをdetachしないよう変更 2023-08-29 19:37:44 +09:00
.editorconfig config + whitespace: add .prettierrc; apply consistent indentation (space@2ea) 2023-07-23 07:48:30 +10:00
.eslintignore first commit 2023-03-09 19:37:38 +09:00
.eslintrc first commit 2023-03-09 19:37:38 +09:00
.gitignore zipをignore 2023-08-05 17:29:59 +09:00
.npmrc first commit 2023-03-09 19:37:38 +09:00
.prettierrc config + whitespace: add .prettierrc; apply consistent indentation (space@2ea) 2023-07-23 07:48:30 +10:00
esbuild.config.mjs mainをsrcに移動 2023-08-05 14:36:39 +09:00
LICENSE.md Create LICENSE.md 2023-03-13 09:54:41 +09:00
manifest-beta.json 4.4.1 2023-08-29 20:03:18 +09:00
manifest.json 4.4.1 2023-08-29 20:03:18 +09:00
package-lock.json 統計ビューを追加 2023-08-14 19:32:42 +09:00
package.json 4.4.1 2023-08-29 20:03:18 +09:00
README.md 画像等 2023-08-20 12:41:18 +09:00
styles.css バッファを文字色に変更 2023-08-14 10:34:07 +09:00
tsconfig.json reactのインストール 2023-08-05 16:59:04 +09:00
version-bump.mjs first commit 2023-03-09 19:37:38 +09:00
versions.json 1.6.0 2023-06-24 09:12:56 +09:00

Obsidian Dynamic Timetable

Dynamic Timetable is an Obsidian plugin that dynamically generates task timetables from Markdown files. This plugin was inspired by タスクシュート(TaskChute).

Image from Gyazo

Installation

The plugin is now officially released as a community plugin. You can install it from below.

obsidian://show-plugin?id=dynamic-timetable

If you want to try the beta version, install it with L7Cy/obsidian-dynamic-timetable using BRAT.

Usage

Task description format

The plugin supports the following markdown formats for tasks.

- [ ] Task name ; Estimated time
- [ ] Task name ; Estimated time @ Start time
- [ ] Task name @ Start time ; Estimated time

Start time format

The start time is optional and can be added in two formats:

  • Time only (e.g., @ 14:30)
  • Date and time (e.g., @ 2023-04-16T14:30)

Task completion and interruption

To complete or interrupt a task, execute the commands "Complete Task" or "Interrupt Task." Upon execution, the topmost incomplete task is checked, and the estimated time and scheduled start time are overwritten with the actual time taken and actual start time.

Image from Gyazo

In the case of "Interrupt Task," in addition to this, a new task with the same name is created and the remaining time is set to the estimated time.

Image from Gyazo

Task text color

When a start time is specified, tasks will have a text color based on the comparison with the end time of the previous task:

  • 🟢Green: Indicates that the task is likely to start at the scheduled time, and there may be room to add more tasks before it.
  • 🔴Red: Indicates that it may be difficult to start the task at the scheduled time, and adjustments to previous tasks may be necessary.

This visual cue helps us understand how to effectively adjust our tasks.