vault backup: 2024-04-23 22:38:34
This commit is contained in:
18
.obsidian/plugins/pomodoro-timer/data.json
vendored
Normal file
18
.obsidian/plugins/pomodoro-timer/data.json
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"workLen": 25,
|
||||
"breakLen": 5,
|
||||
"autostart": true,
|
||||
"useStatusBarTimer": true,
|
||||
"notificationSound": true,
|
||||
"customSound": "",
|
||||
"showTaskProgress": true,
|
||||
"enableTaskTracking": true,
|
||||
"logFile": "FILE",
|
||||
"logFocused": true,
|
||||
"logPath": "Pomodoro_Log",
|
||||
"logLevel": "ALL",
|
||||
"logTemplate": "<%*\nif (log.mode == \"WORK\") {\n if (!log.finished) {\n tR = `🟡 Focused ${log.task.name} ${log.duration} / ${log.session} minutes`;\n } else {\n tR = `🍅 Focused ${log.task.name} ${log.duration} minutes`;\n }\n} else {\n tR = `☕️ Took a break from ${log.begin.format(\"HH:mm\")} to ${log.end.format(\n \"HH:mm\"\n )}`;\n}\n%>",
|
||||
"logFormat": "CUSTOM",
|
||||
"useSystemNotification": false,
|
||||
"taskFormat": "TASKS"
|
||||
}
|
||||
5322
.obsidian/plugins/pomodoro-timer/main.js
vendored
Normal file
5322
.obsidian/plugins/pomodoro-timer/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/pomodoro-timer/manifest.json
vendored
Normal file
11
.obsidian/plugins/pomodoro-timer/manifest.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "pomodoro-timer",
|
||||
"name": "Pomodoro Timer",
|
||||
"version": "1.2.0",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "A pomodoro timer that helps manage your daily focus",
|
||||
"author": "eatgrass",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/eatgrass",
|
||||
"authorUrl": "https://github.com/eatgrass",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
40
.obsidian/plugins/pomodoro-timer/styles.css
vendored
Normal file
40
.obsidian/plugins/pomodoro-timer/styles.css
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
|
||||
This CSS file will be included with your plugin, and
|
||||
available in the app when your plugin is enabled.
|
||||
|
||||
If your plugin does not need CSS, delete this file.
|
||||
|
||||
*/
|
||||
|
||||
.theme-light,
|
||||
.theme-dark {
|
||||
--pomodoro-timer-elapsed-color: var(--color-green);
|
||||
--pomodoro-timer-color: var(--text-faint);
|
||||
--pomodoro-timer-text-color: var(--text-normal);
|
||||
--pomodoro-timer-dot-color: var(--color-red);
|
||||
}
|
||||
|
||||
.status-bar-item.plugin-pomodoro-timer {
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.pomodoro-focus {
|
||||
margin-left: 0.5rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.pomodoro-tasks-item-desc * {
|
||||
font-size: 0.8rem !important;
|
||||
}
|
||||
|
||||
.pomodoro-tasks-item-desc p {
|
||||
width: 100%;
|
||||
line-height: 1.1;
|
||||
height: 2.2em;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
line-break: anywhere;
|
||||
}
|
||||
Reference in New Issue
Block a user