This commit is contained in:
Forrest 2026-07-27 23:29:05 -04:00
commit 971e49db5c
246 changed files with 93082 additions and 0 deletions

28
.obsidian/app.json vendored Normal file
View file

@ -0,0 +1,28 @@
{
"attachmentFolderPath": "z_assets",
"mobileToolbarCommands": [
"editor:insert-wikilink",
"editor:insert-embed",
"editor:insert-tag",
"editor:attach-file",
"editor:set-heading",
"editor:toggle-bold",
"editor:toggle-italics",
"editor:toggle-strikethrough",
"editor:toggle-highlight",
"editor:toggle-code",
"editor:toggle-blockquote",
"editor:insert-link",
"editor:toggle-bullet-list",
"editor:toggle-numbered-list",
"editor:toggle-checklist-status",
"editor:indent-list",
"editor:unindent-list",
"editor:undo",
"editor:redo",
"editor:configure-toolbar",
"editor:insert-table"
],
"promptDelete": false,
"trashOption": "none"
}

9
.obsidian/appearance.json vendored Normal file
View file

@ -0,0 +1,9 @@
{
"theme": "obsidian",
"cssTheme": "ITS Theme",
"enabledCssSnippets": [
"S - Encoded Fonts",
"S - Encoded Icons",
"S - Runes"
]
}

4
.obsidian/community-plugins.json vendored Normal file
View file

@ -0,0 +1,4 @@
[
"obsidian-text-format",
"archivist-importer"
]

33
.obsidian/core-plugins.json vendored Normal file
View file

@ -0,0 +1,33 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"canvas": true,
"outgoing-link": true,
"tag-pane": true,
"footnotes": false,
"properties": false,
"page-preview": true,
"daily-notes": true,
"templates": true,
"note-composer": true,
"command-palette": true,
"slash-command": false,
"editor-status": true,
"bookmarks": true,
"markdown-importer": false,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,
"publish": true,
"sync": true,
"bases": true,
"webviewer": false
}

22
.obsidian/graph.json vendored Normal file
View file

@ -0,0 +1,22 @@
{
"collapse-filter": true,
"search": "",
"showTags": false,
"showAttachments": false,
"hideUnresolved": true,
"showOrphans": true,
"collapse-color-groups": true,
"colorGroups": [],
"collapse-display": true,
"showArrow": false,
"textFadeMultiplier": -1.2,
"nodeSizeMultiplier": 1.09745454545455,
"lineSizeMultiplier": 0.958181818181818,
"collapse-forces": true,
"centerStrength": 0.365120593692022,
"repelStrength": 14.1417439703154,
"linkStrength": 1,
"linkDistance": 500,
"scale": 0.20087865309973296,
"close": true
}

View file

@ -0,0 +1,3 @@
{
"apiKey": "ob"
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,10 @@
{
"id": "archivist-importer",
"name": "Archivist Importer",
"version": "0.1.7",
"minAppVersion": "1.11.4",
"description": "Import selected vault files into Archivist campaigns.",
"author": "Archivist AI",
"authorUrl": "https://myarchivist.ai",
"isDesktopOnly": true
}

View file

@ -0,0 +1,151 @@
.archivist-section {
margin: 1rem 0;
}
.archivist-campaign-controls {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1rem;
}
.archivist-campaign-select {
flex: 1;
padding-left: 0.5rem;
background: var(--background-primary);
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
color: var(--text-normal);
}
.archivist-no-campaigns {
flex: 1;
padding: 0.5rem;
color: var(--text-muted);
}
.archivist-button-group {
display: flex;
gap: 0.5rem;
}
.archivist-create-btn {
padding: 0.5rem 1rem;
background: var(--interactive-accent);
color: var(--text-on-accent);
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: 500;
}
.archivist-create-btn:hover:not(:disabled) {
background: var(--interactive-accent-hover);
}
.archivist-btn-loading {
opacity: 0.7;
cursor: wait;
}
.archivist-refresh-btn {
padding: 0.5rem;
width: 2.5rem;
background: var(--background-modifier-form-field);
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
cursor: pointer;
font-size: 1.2rem;
line-height: 1;
color: var(--text-normal);
}
.archivist-refresh-btn:hover {
background: var(--background-modifier-hover);
}
.archivist-table {
width: 100%;
border-collapse: collapse;
}
.archivist-table th,
.archivist-table td {
border: 1px solid var(--background-modifier-border);
padding: 4px 6px;
}
.archivist-table th {
background: var(--background-modifier-form-field);
}
.archivist-table th input[type="checkbox"] {
cursor: pointer;
}
.archivist-table td input[type="checkbox"] {
cursor: pointer;
}
.archivist-import-btn {
padding: 0.75rem 1.5rem;
background: var(--interactive-accent);
color: var(--text-on-accent);
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: 500;
font-size: 1rem;
}
.archivist-import-btn:hover:not(:disabled) {
background: var(--interactive-accent-hover);
}
.archivist-import-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.archivist-progress-container {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.archivist-progress-text {
font-weight: 500;
color: var(--text-normal);
}
.archivist-progress-bar {
width: 100%;
height: 24px;
background: var(--background-modifier-border);
border-radius: 4px;
overflow: hidden;
}
.archivist-progress-fill {
height: 100%;
background: var(--interactive-accent);
transition: width 0.3s ease;
}
.archivist-status-cell {
white-space: nowrap;
font-size: 0.85em;
}
.archivist-status-done {
color: var(--color-green);
}
.archivist-status-error {
color: var(--color-red);
cursor: help;
}
.archivist-status-uploading {
color: var(--text-muted);
}

View file

@ -0,0 +1,124 @@
{
"manifest": {
"version": "3.1.0"
},
"MergeParagraph_Newlines": true,
"MergeParagraph_Spaces": true,
"LowercaseFirst": true,
"RemoveBlanksWhenChinese": false,
"ZoteroNoteRegExp": "“(?<text>.*)” \\((?<item>.*?)\\) \\(\\[pdf\\]\\((?<pdf_url>.*?)\\)\\)",
"ZoteroNoteTemplate": "{text} [🔖]({pdf_url})",
"BulletPoints": "•–§",
"WrapperList": [
{
"name": "underline",
"prefix": "<u>",
"suffix": "</u>",
"id": "underline"
}
],
"RequestList": [],
"customReplaceList": [
{
"id": "remove-trailing-spaces",
"name": "Remove trailing spaces",
"data": [
{
"search": "(\\s*)(?=\\n)|(\\s*)$",
"replace": ""
}
]
},
{
"id": "remove-blank-line",
"name": "Remove blank line(s)",
"data": [
{
"search": "\\n\\s*\\n",
"replace": "\\n"
}
]
},
{
"id": "add-line-break",
"name": "Add extra line break between paragraphs",
"data": [
{
"search": "\\n",
"replace": "\\n\\n"
}
]
},
{
"id": "split-lines-by-blank",
"name": "Split line(s) by blanks",
"data": [
{
"search": " ",
"replace": "\\n"
}
]
}
],
"customReplaceBuiltInLog": {
"remove-trailing-spaces": {
"id": "remove-trailing-spaces",
"modified": false,
"data": [
{
"search": "(\\s*)(?=\\n)|(\\s*)$",
"replace": ""
}
]
},
"remove-blank-line": {
"id": "remove-blank-line",
"modified": false,
"data": [
{
"search": "\\n\\s*\\n",
"replace": "\\n"
}
]
},
"add-line-break": {
"id": "add-line-break",
"modified": false,
"data": [
{
"search": "\\n",
"replace": "\\n\\n"
}
]
},
"split-lines-by-blank": {
"id": "split-lines-by-blank",
"modified": false,
"data": [
{
"search": " ",
"replace": "\\n"
}
]
}
},
"ToggleSequence": "titleCase\nlowerCase\nupperCase",
"RemoveWikiURL2": false,
"WikiLinkFormat": {
"headingOnly": "{title} (> {heading})",
"aliasOnly": "{alias} ({title})",
"both": "{alias} ({title} > {heading})"
},
"UrlLinkFormat": "{text}",
"ProperNoun": "",
"OrderedListOtherSeparator": "",
"Wikilink2mdRelativePath": "relative-obsidian",
"calloutType": "NOTE",
"debugMode": false,
"headingLevelMin": 0,
"calloutTypeDecider": "previous-content",
"formatOnSaveSettings": {
"enabled": false,
"commandsString": ""
}
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,15 @@
{
"id": "obsidian-text-format",
"name": "Text Format",
"version": "3.1.0",
"minAppVersion": "0.9.7",
"description": "Format text such as lowercase/uppercase/capitalize/titlecase, converting order/bullet list, removing redundant spaces/newline characters.",
"author": "Benature",
"authorUrl": "https://github.com/Benature",
"fundingUrl": {
"Buy Me a Coffee": "https://www.buymeacoffee.com/benature",
"爱发电": "https://afdian.net/a/Benature-K",
"微信/支付宝": "https://s2.loli.net/2024/01/30/jQ9fTSyBxvXRoOM.png"
},
"isDesktopOnly": false
}

View file

@ -0,0 +1,58 @@
.plugin-text-format H3,
.plugin-text-format H4 {
margin-bottom: 0px;
padding-bottom: 0px;
}
.plugin-text-format H4{
opacity: 0.7;
}
.plugin-text-format .heading-description {
padding-top: 0px;
color: var(--text-faint);
}
.plugin-text-format .header-div:has(H3) + .tf-collapsible-content {
margin-top: 10px;
}
.plugin-text-format .header-div:has(H4) + .tf-collapsible-content {
margin-top: 5px;
}
.plugin-text-format .setting-item > .setting-item-control > input {
min-width: 145px;
}
.plugin-text-format .setting-item.custom-replace input,
.plugin-text-format .setting-item.wrapper input {
width: 33%;
}
.plugin-text-format .setting-item.api-request input:first-child {
width: 30%;
}
.plugin-text-format .setting-item.api-request input {
width: 70%;
}
.tf-collapsible-content.is-active {
display: block;
}
.tf-collapsible-content {
display: none;
}
.plugin-text-format .header-div:hover {
background-color: var(--interactive-hover, #363636);
border-radius: var(--button-radius, 5px);
}
.tf-collapsible-header {
padding-bottom: 8px;
padding-top: 4px;
}
.tf-collapsible-icon {
position: relative;
top: 4px;
left: 16px;
}

6
.obsidian/publish.json vendored Normal file
View file

@ -0,0 +1,6 @@
{
"siteId": "a3f8de47bcb04d9442d88ebc4dea0ec7",
"host": "publish-01.obsidian.md",
"included": [],
"excluded": []
}

142
.obsidian/snippets/S - Encoded Fonts.css vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

31
.obsidian/snippets/S - Runes.css vendored Normal file
View file

@ -0,0 +1,31 @@
.large-font {
font-size: 32px;
}
.gnomish-script {
font-family: 'Iokharic' !important;
}
.elvish-script {
font-family: 'Tengwar Annatar' !important;
}
.dwarvish-script {
font-family: 'Rellanic' !important;
}
.rune-script {
font-family: 'Rune' !important;
}
.feyspeak-script {
font-family: 'Baybayin Doctrina' !important;
}
.common-script {
font-family: 'Half-Elven Condensed Italic' !important;
}
.mechanik-script {
font-family: 'Genshin Impact Font' !important;
}

3
.obsidian/templates.json vendored Normal file
View file

@ -0,0 +1,3 @@
{
"folder": "z_templates"
}

125
.obsidian/text-generator.json vendored Normal file
View file

@ -0,0 +1,125 @@
{
"packagesHash": {
"default": {
"packageId": "default",
"name": "Default Prompts Package",
"version": "0.0.9",
"minTextGeneratorVersion": "0.5.0",
"description": "This is the main package that comes with Text Generator plugin in Obsidian",
"author": "Noureddine Haouari",
"tags": "writing, brainstorming",
"authorUrl": "https://www.buymeacoffee.com/haouarine",
"repo": "text-gen/gpt-3-prompt-templates"
},
"dalle": {
"packageId": "dalle",
"name": "OpenAI Dalle Package",
"version": "0.1.1",
"minTextGeneratorVersion": "0.7.0",
"description": "The package contains some interessting Dalle-2/Dalle-3 prompt templates",
"author": "Noureddine Haouari",
"tags": "photo, dalle-2, dalle-3",
"authorUrl": "https://www.buymeacoffee.com/haouarine",
"repo": "text-gen/tg-dalle-package"
},
"huggingface": {
"packageId": "huggingface",
"name": "Huggingface Prompts Package",
"version": "0.0.4",
"minTextGeneratorVersion": "0.5.0",
"description": "Huggingface Prompts comes with Text Generator plugin in Obsidian",
"author": "Noureddine Haouari",
"tags": "writing, brainstorming, huggingface",
"authorUrl": "https://www.buymeacoffee.com/haouarine",
"repo": "text-gen/huggingface"
},
"awesomePrompts": {
"packageId": "awesomePrompts",
"name": "Awesome Prompts",
"version": "0.0.3",
"minTextGeneratorVersion": "0.5.7",
"description": "This repo includes ChatGPT prompt curation to use ChatGPT better.",
"author": "f",
"tags": "writing, brainstorming, awesome",
"authorUrl": "https://github.com/f/awesome-chatgpt-prompts",
"repo": "text-gen/awesome-tg-package"
},
"tts": {
"packageId": "tts",
"name": "Text To Speech Package",
"version": "0.0.3",
"minTextGeneratorVersion": "0.6.0",
"description": "Contains Text To Speech Templates and support for TTS for other templates",
"author": "Noureddine",
"tags": "TTS, Speak",
"authorUrl": "https://www.buymeacoffee.com/haouarine",
"repo": "text-gen/TTS"
},
"vision": {
"packageId": "vision",
"name": "Vision Package",
"version": "0.0.2",
"minTextGeneratorVersion": "0.6.0",
"description": "Contains Vision Templates and support for Vision for other templates (Scripts)",
"author": "Noureddine",
"tags": "OpenAI,markdown,gpt-4-vision,vision,images",
"authorUrl": "https://www.buymeacoffee.com/haouarine",
"repo": "text-gen/tg-vision"
},
"smartConnections": {
"packageId": "smartConnections",
"name": "Smart Connections Package",
"version": "0.0.2",
"minTextGeneratorVersion": "0.6.0",
"description": "Contains Smart Connection Templates and support for Smart Connections for other templates (Script)",
"author": "Noureddine",
"tags": "smartConnections,smart-connections",
"authorUrl": "https://www.buymeacoffee.com/haouarine",
"repo": "text-gen/tg-smartConnections"
},
"Experimental": {
"packageId": "Experimental",
"name": "Experimental Package",
"version": "0.0.2",
"minTextGeneratorVersion": "0.6.6",
"description": "Contains experimental templates",
"author": "Noureddine",
"tags": "experiments",
"authorUrl": "https://www.buymeacoffee.com/haouarine",
"repo": "text-gen/experimental-package"
},
"testExtension": {
"core": true,
"type": "feature",
"packageId": "testExtension",
"name": "test extension Package",
"version": "0.0.1",
"minTextGeneratorVersion": "0.1.0",
"description": "testing extension package",
"author": "Noureddine Haouari",
"tags": "testing",
"authorUrl": "https://www.buymeacoffee.com/haouarine",
"repo": "text-gen/gpt-3-prompt-templates",
"folderName": "testExtension",
"price": 20,
"installed": false
},
"excalidraw": {
"packageId": "excalidraw",
"name": "excalidraw package",
"version": "0.0.1",
"minTextGeneratorVersion": "0.6.0",
"description": "Contains Excalidraw Templates and support for Excalidraw for other templates (Scripts)",
"author": "Noureddine",
"tags": "OpenAI,markdown,gpt-4-vision,vision,images",
"authorUrl": "https://www.buymeacoffee.com/haouarine",
"repo": "text-gen/tg-excalidraw",
"core": true,
"folderName": "excalidrawPackage",
"price": 2
}
},
"resources": {},
"installedPackagesHash": {},
"subscriptions": []
}

View file

@ -0,0 +1,7 @@
{
"name": "AnuPpuccin",
"version": "1.5.0",
"minAppVersion": "1.6.0",
"author": "Anubis",
"authorUrl": "https://github.com/AnubisNekhet"
}

9080
.obsidian/themes/AnuPpuccin/theme.css vendored Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,7 @@
{
"name": "ITS Theme",
"version": "1.3.33",
"minAppVersion": "0.16.0",
"author": "SlRvb",
"authorUrl": "https://github.com/SlRvb"
}

14470
.obsidian/themes/ITS Theme/theme.css vendored Normal file

File diff suppressed because one or more lines are too long