vault backup: 2026-04-07 22:14:48
This commit is contained in:
3
.obsidian/community-plugins.json
vendored
3
.obsidian/community-plugins.json
vendored
@@ -7,5 +7,6 @@
|
||||
"templater-obsidian",
|
||||
"highlightr-plugin",
|
||||
"obsidian-file-color",
|
||||
"darlal-switcher-plus"
|
||||
"darlal-switcher-plus",
|
||||
"dataview"
|
||||
]
|
||||
20876
.obsidian/plugins/dataview/main.js
vendored
Normal file
20876
.obsidian/plugins/dataview/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
11
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
11
.obsidian/plugins/dataview/manifest.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "dataview",
|
||||
"name": "Dataview",
|
||||
"version": "0.5.68",
|
||||
"minAppVersion": "0.13.11",
|
||||
"description": "Complex data views for the data-obsessed.",
|
||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||
"authorUrl": "https://github.com/blacksmithgu",
|
||||
"helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
141
.obsidian/plugins/dataview/styles.css
vendored
Normal file
141
.obsidian/plugins/dataview/styles.css
vendored
Normal file
@@ -0,0 +1,141 @@
|
||||
.block-language-dataview {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Table Views **/
|
||||
/*****************/
|
||||
|
||||
/* List View Default Styling; rendered internally as a table. */
|
||||
.table-view-table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr:hover {
|
||||
background-color: var(--table-row-background-hover);
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr > th {
|
||||
font-weight: 700;
|
||||
font-size: larger;
|
||||
border-top: none;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
border-bottom: solid;
|
||||
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr > td {
|
||||
text-align: left;
|
||||
border: none;
|
||||
font-weight: 400;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table ul, .table-view-table ol {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Rendered value styling for any view. */
|
||||
.dataview-result-list-root-ul {
|
||||
padding: 0em !important;
|
||||
margin: 0em !important;
|
||||
}
|
||||
|
||||
.dataview-result-list-ul {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Generic grouping styling. */
|
||||
.dataview.result-group {
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
/*******************/
|
||||
/** Inline Fields **/
|
||||
/*******************/
|
||||
|
||||
.dataview.inline-field-key {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-primary-alt);
|
||||
color: var(--nav-item-color-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--nav-item-color-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-standalone-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--nav-item-color-selected);
|
||||
}
|
||||
|
||||
/***************/
|
||||
/** Task View **/
|
||||
/***************/
|
||||
|
||||
.dataview.task-list-item, .dataview.task-list-basic-item {
|
||||
margin-top: 3px;
|
||||
margin-bottom: 3px;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
||||
background-color: var(--text-selection);
|
||||
box-shadow: -40px 0 0 var(--text-selection);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Error Views **/
|
||||
/*****************/
|
||||
|
||||
div.dataview-error-box {
|
||||
width: 100%;
|
||||
min-height: 150px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border: 4px dashed var(--background-secondary);
|
||||
}
|
||||
|
||||
.dataview-error-message {
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*************************/
|
||||
/** Additional Metadata **/
|
||||
/*************************/
|
||||
|
||||
.dataview.small-text {
|
||||
font-size: smaller;
|
||||
color: var(--text-muted);
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
.dataview.small-text::before {
|
||||
content: "(";
|
||||
}
|
||||
|
||||
.dataview.small-text::after {
|
||||
content: ")";
|
||||
}
|
||||
26
.obsidian/workspace.json
vendored
26
.obsidian/workspace.json
vendored
@@ -20,8 +20,23 @@
|
||||
"icon": "lucide-file",
|
||||
"title": "New File Template"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "4a709921b51fcf11",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "10 Courses/02 - SoSe 2026/ET II/29592673 - Elektrotechnik II.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "29592673 - Elektrotechnik II"
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"currentTab": 1
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
@@ -182,8 +197,11 @@
|
||||
"darlal-switcher-plus:Open Symbols for the active editor": false
|
||||
}
|
||||
},
|
||||
"active": "7a0e7b37bd89861d",
|
||||
"active": "4a709921b51fcf11",
|
||||
"lastOpenFiles": [
|
||||
"10 Courses/02 - SoSe 2026/ET II/29592709 - Klausur.md",
|
||||
"20 Atlas/ET II - Map of Content.md",
|
||||
"99 Templates/New File Template.md",
|
||||
"20 Atlas",
|
||||
"10 Courses/02 - SoSe 2026/ET II/29592733 - Zählpfeilsysteme.md",
|
||||
"30 Library/29592593 - ET_II_Folien_gesamt_020426.pdf",
|
||||
@@ -192,11 +210,9 @@
|
||||
"10 Courses/02 - SoSe 2026/ET II/Zählpfeilsysteme.md",
|
||||
"10 Courses/02 - SoSe 2026/ET II/29592751 - Übungsaufgabe 1.md",
|
||||
"10 Courses/02 - SoSe 2026/ET II/29592722 - Zeitabhängige Größen.md",
|
||||
"10 Courses/02 - SoSe 2026/ET II/29592709 - Klausur.md",
|
||||
"10 Courses/02 - SoSe 2026/ET II/29592729 - Kirchhoffsche Gesetze.md",
|
||||
"10 Courses/02 - SoSe 2026/ET II/29592673 - Elektrotechnik II.md",
|
||||
"10 Courses/02 - SoSe 2026/ET II/Elektrotechnik II.md",
|
||||
"99 Templates/New File Template.md",
|
||||
"00 Inbox/29592877 - review.md",
|
||||
"00 Inbox/29592872.615316667 - Lecture 1 Recp.md",
|
||||
"00 Inbox/1775572307685 - Lecture 1 Summary.md",
|
||||
@@ -207,7 +223,6 @@
|
||||
"30 Library/ET_II_Folien_gesamt_020426.pdf",
|
||||
"30 Library/d6d88eed747e389e597d2a19bb868ee6?cid=4b45b3a6f32c35a6d9ca5b1b07b760de",
|
||||
"30 Library/wget-log",
|
||||
"Untitled.md",
|
||||
"10 Courses/01 - WiSe 2025_26/DAS/Formulas.md",
|
||||
"10 Courses/02 - SoSe 2026/Mathe II/Integration.md",
|
||||
"Test File.md",
|
||||
@@ -218,7 +233,6 @@
|
||||
"00 Inbox",
|
||||
"90 Archive",
|
||||
"30 Library",
|
||||
"10 Courses/01 - WiSe 2025_26",
|
||||
"10 Courses/01 - WiSe 2025_26/DAS/Arithmetic.md",
|
||||
"10 Courses/01 - WiSe 2025_26/ET/images/beispiel_knotenregel.png"
|
||||
]
|
||||
|
||||
6
20 Atlas/ET II - Map of Content.md
Normal file
6
20 Atlas/ET II - Map of Content.md
Normal file
@@ -0,0 +1,6 @@
|
||||
```dataview
|
||||
TABLE topic AS "Concept", status AS "Review Status"
|
||||
FROM "10 Courses/02 - SoSe 2026/ET II"
|
||||
WHERE type = "lecture" OR type = "concept"
|
||||
SORT created DESC
|
||||
```
|
||||
@@ -8,6 +8,7 @@ await tp.file.move("/00 Inbox/" + newName)
|
||||
created: <% tp.date.now("YYYY-MM-DD HH:mm") %>
|
||||
course:
|
||||
topic:
|
||||
related:
|
||||
type: lecture
|
||||
status: 🔴
|
||||
tags:
|
||||
|
||||
Reference in New Issue
Block a user