Countdown To

by Gui Cattani
5
4
3
2
1
Score: 43/100

Description

The CountdownTo plugin lets you visualize progress toward upcoming events or deadlines using customizable countdown bars. You can choose between various styles like line, circle, semicircle, and square, with full control over colors, update intervals, and date formatting. It also provides flexible display options using placeholders that show percentages, dates, and durations, all powered by Luxon formatting.

Reviews

No reviews yet.

Stats

11
stars
2,930
downloads
1
forks
454
days
114
days
114
days
4
total PRs
0
open PRs
0
closed PRs
4
merged PRs
5
total issues
3
open issues
2
closed issues
3
commits

Latest Version

4 months ago

Changelog

What's Changed

New Contributors

Full Changelog: https://github.com/guicattani/obsidian-countdown-to/compare/1.5.0...1.6.0

README file from

Github

CountdownTo

CountdownTo

Track time until important deadlines, events, or milestones with visual progress indicators.

Features

  • Create visual progress bars that count down to specific dates and times (support for minutes and seconds)
  • Progress bars can be configured to run in realtime
  • Multiple progress bar styles: Line, Circle, SemiCircle, and Square (from progressbar.js, support for custom shapes soon!)
  • Customizable appearance
  • Flexible date and time formatting using Luxon
  • Custom info text with placeholders for dates, percentages, and durations
  • Progress can be shown as forward progress or as a countdown
  • Configurable completion messages

Installation

From Obsidian Community Plugins

  1. Open Obsidian Settings
  2. Go to Community Plugins and disable Safe Mode if necessary
  3. Click "Browse" and search for "Countdown To"
  4. Install the plugin and enable it

Manual Installation

  1. Download the latest release from the GitHub releases page
  2. Extract the files to your Obsidian vault's plugins folder: <vault>/.obsidian/plugins/countdown-to/
  3. Reload Obsidian
  4. Enable the plugin in Obsidian settings under Community Plugins

How to Use

Create a countdown progress bar by adding a code block with the countdown-to language identifier:

```countdown-to
title: Project Deadline
startDate: 2025-03-12
startTime: 08:00:00
endDate: 2025-04-11
endTime: 14:00:00
type: circle
color: #ff5722
trailColor: #f5f5f5
infoFormat: {percent}% complete - {remaining} until {end:LLL d, yyyy}
updateInRealTime: true
updateIntervalInSeconds: 30
```

Required Parameters

If no startDate and endDate is provided the countdown will assume the current day. So at the very least the widget requires a start time and end time. If that is the case the countdown will run daily.

  • startDate: Start date for the progress calculation (format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS)
  • startTime: Start time for the progress calculation (format: HH:MM:SS, optional - defaults to 00:00:00)
  • endDate: The target date to count down to (format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS)
  • endTime: The target time to count down to (format: HH:MM:SS, optional - defaults to 00:00:00)

Note: You can use either:

  • Separate date and time parameters: startDate: 2025-01-01 + startTime: 09:00:00
  • Combined ISO format: startDate: 2025-01-01T09:00:00 startTime will be ignored. This logic is the same for endDate and endTime
  • The startDate or startTime can be in the future, and the info message will reflect that it is upcoming. The message for upcoming countdowns can be customized in the settings under Default info format upcoming.

Optional Parameters

  • title: Title of the countdown (show above the progress bar)
  • type: Progress bar type - line, circle, semicircle, or square (defaults to line)
  • color: Color for the progress bar (HEX format)
  • trailColor: Color for the incomplete part of the progress bar (HEX format)
  • progressType: progress (default) or countdown
  • onCompleteText: Text to display when the countdown is complete
  • infoFormat: Custom format for the information text
  • updateInRealTime: Whether to update the progress bar in real-time (true/false)
  • updateIntervalInSeconds: How often to update the progress bar

Formatting Options

The infoFormat parameter supports various placeholders and Luxon formatting options:

Basic Placeholders

  • {percent} - Percentage of completion
  • {start} - Start date (ISO format)
  • {end} - End date (ISO format)
  • {current} - Current date (ISO format)
  • {remaining} - Remaining time in human-readable format
  • {elapsed} - Elapsed time in human-readable format
  • {total} - Total duration in human-readable format

Luxon Formatting

You can format dates and durations using Luxon's formatting syntax:

  • {start:format} - Format start date
  • {end:format} - Format end date
  • {current:format} - Format current date
  • {remaining:format} - Format remaining duration
  • {elapsed:format} - Format elapsed duration
  • {total:format} - Format total duration

For example:

  • {end:LLL d, yyyy} displays the end date as "Apr 11, 2025"
  • {end:EEEE, MMMM d, yyyy} displays as "Thursday, April 11, 2025"

See the Luxon formatting reference for all available format tokens.

Using parameters

Countdown To is compatible with Obsidian Parameters. To use them you use the same parameters explained in #How to Use but have them prefixed with countdown-, for example:

---
countdown-startDate: 2025-08-31
countdown-startTime: 19:00
countdown-endDate: 2025-09-15
countdown-endTime: 19:00
countdown-title: Property Title Test
countdown-color: "#ff5722"
countdown-type: Line
countdown-trailColor: "#ff0022"
countdown-progressType: progress
countdown-updateInRealTime: true
countdown-updateIntervalInSeconds: 10
countdown-infoFormat: "{percent}% complete - {remaining} until {end:LLL d, yyyy}"
countdown-infoFormatUpcoming: Upcoming {title}
countdown-onCompleteText: Completed {title}
---

These parameters can be overriden in a countdown-to but they will now be the default value for the file and they don't need to be written in a countdown-to block.

  ```countdown-to
  ```

Will now work even with no startDate

Configuration

You can configure default settings for all progress bars in the plugin settings:

  1. Open Obsidian Settings
  2. Navigate to the "Countdown To" plugin settings
  3. Customize the default bar type, colors, progress type, update interval, and info format

All settings can be overridden in individual progress bar code blocks.

CSS Customization

A custom CSS snippet can be created in your ./.obsidian/snippets and the classes on https://github.com/guicattani/obsidian-countdown-to/blob/main/styles.css can be overriden.

Performance Considerations

  • Setting a very low update interval (e.g., 1 second) for many progress bars may impact performance
  • You can set different update intervals for different progress bars based on their importance
  • The default behavior is NOT updating progress bars in realtime, so keep this in mind.

License

This project is licensed under the GPL-3.0 License - see the LICENSE file for details.

Support

If you encounter any issues or have feature requests, please open an issue here on GitHub.

Credits

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
TimeStamper
5 years ago by Martin Eder
A plugin for Obsidian to quickly insert customized date- and time-stamps to the currently active note
Super Simple Time Tracker
4 years ago by Ellpeck
Multi-purpose time trackers for your notes!
WakaTime
4 years ago by WakaTime
Obsidian.md plugin for automatic time tracking and metrics generated from your Obsidian usage activity.
Text Progress Bar
4 years ago by Michael Adams
Low-fi text-based progress bar for Obsidian
Obsidian-compatible Watcher for ActivityWatch
4 years ago by Grimmauld
Obsidian plugin to track user activity with ActivityWatch
RescueTime
3 years ago by Tatsuya Hayashi
A RescueTime integration plugin to view your activity logs in Obsidian.
ManicTime
3 years ago by Finkit d.o.o.
Fastimer
3 years ago by vkostyanetsky
Intermittent fasting tracker plugin for Obsidian
Timekeep
2 years ago by Jacobtread
Obsidian task time tracking
Checkbox Time Tracker
2 years ago by UD
Checkbox Time Tracker for Obsidian
Relative Timestamps
2 years ago by Charles Young
Stopwatch
5 years ago by Tokuhiro Matsuno
Grandfather
5 years ago by Danny Hernandez
A simple Obsidian plugin to display the time and date on the status bar
Toggl Track
5 years ago by Maxime Cannoodt
A Toggl integration plugin for the popular knowledge base application Obsidian.
Fetch Prayer Times
2 years ago by Ecys
Fetches times from Aladhan API and inserts into a table.
Focus Time
2 years ago by AstraDev
Focus Time is a plugin that helps you track how much time you spend on each note.
Christmas
2 years ago by MatseVH
Daily Note Metrics
a year ago by Andre-Diamond
Obsidian Plugin that parses Daily Notes and uses data to create charts
Chronotyper
a year ago by BambusControl
Obsidian plugin for tracking note edit time
SolidTime Integration
a year ago by proniclabs
Obsidian SolidTime Integration Plugin
Startpage
a year ago by kuzzh
A modern startup homepage plugin for Obsidian that provides a beautiful dashboard interface, displaying vault statistics, pinned notes, and recent notes.
Pretty Properties
a year ago by Anareaty
Lark Style CountDown Timer
9 months ago by Zhaoyang Yu
Tag Timer
9 months ago by quantavil
The Tag Timer is a versatile plugin for Obsidian that allows you to seamlessly track the time you spend on specific tasks or sections within your notes.
Timelog
8 months ago by Eddie Blundell
Time logging plugin for obsidian
Role Switch
7 months ago by Zafrem
This program is a tool that recognizes and makes task switching easier, even though multitasking is difficult.
Synaptic View
6 months ago by Yongmini
Obsidian Plugin : Synaptic View that unifies your dashboards, hub notes, quick-entry notes, periodic notes, web shortcuts, and calendar navigation—enable it as the default new-tab experience or summon it with a command.
Note Progressbar
5 months ago by Ryoma Kawahara
Project Manager
4 months ago by stepankropachev
Project management natively in your Obsidian vault. Table, Gantt, and Kanban views with subtasks, dependencies, time tracking, and custom fields — all stored as plain Markdown. No external services.
TaskNotes
3 months ago by callumalpass
Task and time-tracking management with calendar integration for Obsidian
Apex Dashboard
2 months ago by PandoraReads
Stop switching between Obsidian notes. One page. Everything you need. Memo your thoughts, crush your todos, track your projects — and make it look incredible doing it.
Live Life Recording
2 months ago by goryugocast
Operate tasks directly in Markdown with start/finish records, routine insertion, and a lightweight daily summary for Obsidian.
Journalit
2 months ago by Cursive
Obsidian trading journal with broker sync, trade imports, analytics, prop firm tracking, reviews and rule-based trading workflows.
Sheet Plus
2 months ago by ljcoder
obsidian spreadsheets solutions
Day Planner
a month ago by ivan-lednev
An Obsidian plugin for day planning with a clean UI and a simple task format
Prisma Calendar
a month ago by Matej Vavro Productivity
Prisma is not just a calendar plugin. It turns any note with a date into a flexible planning system inside Obsidian. There are no rigid schemas or predefined structures — just your data, your rules, fully under your control. It lets you see your entire vault through time.
Time Things
a month ago by plasmabit
Know when your note was was last updated. Track how much time you spent writing. Keep an eye on the clock.
Operon
a month ago by Hasan Yılmaz
Task management system for humans and agents in Obsidian.
TaskChute Plus
a month ago by hiroyaiizuka
Execute Taskchute for Obsidian
WorkLife Calendar
20 days ago by RavenLife
All-in-one: a smart calendar, task and habit tracker, time tracker, and financial planner, all connected into a single ecosystem within Obsidian.
Abele
17 days ago by dudaanton
An Obsidian plugin that adds a lot of functionality I personally find missing.
Xove Dashboard
16 days ago by ty
Obsidian 个人工作台插件:把任务管理 / 项目管理 / 灵感收集 / 笔记统计 收进一个首页,数据全留在本地的。
ICOR for Life - Connect
11 days ago by Paperless Movement S.L.
Your app.myicor.com account inside your vault: ICOR Journey and Growth Assignment dashboards, knowledge-base search, reflections synced as notes you own, and myICOR context for Claude sessions. Part of the ICOR for Life suite.
Wiki Companion
11 days ago by Mo A
A minimalist, read-only calendar for Obsidian, built on the frontmatter you already have.