update
This commit is contained in:
parent
8f7b416a19
commit
381070e3b0
|
@ -4,5 +4,5 @@
|
||||||
"baseFontSize": 19,
|
"baseFontSize": 19,
|
||||||
"monospaceFontFamily": "Monaco,Yahei Monaco",
|
"monospaceFontFamily": "Monaco,Yahei Monaco",
|
||||||
"textFontFamily": "Yahei Monaco",
|
"textFontFamily": "Yahei Monaco",
|
||||||
"cssTheme": "Blue Topaz"
|
"cssTheme": "Things"
|
||||||
}
|
}
|
|
@ -24,5 +24,35 @@
|
||||||
],
|
],
|
||||||
"key": "O"
|
"key": "O"
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
"app:go-back": [
|
||||||
|
{
|
||||||
|
"modifiers": [
|
||||||
|
"Mod",
|
||||||
|
"Alt"
|
||||||
|
],
|
||||||
|
"key": "ArrowLeft"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"modifiers": [
|
||||||
|
"Alt"
|
||||||
|
],
|
||||||
|
"key": "ArrowLeft"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"app:go-forward": [
|
||||||
|
{
|
||||||
|
"modifiers": [
|
||||||
|
"Mod",
|
||||||
|
"Alt"
|
||||||
|
],
|
||||||
|
"key": "ArrowRight"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"modifiers": [
|
||||||
|
"Alt"
|
||||||
|
],
|
||||||
|
"key": "ArrowRight"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "Blue Topaz",
|
"name": "Blue Topaz",
|
||||||
"version": "2024040901",
|
"version": "2024121301",
|
||||||
"minAppVersion": "1.0.0",
|
"minAppVersion": "1.0.0",
|
||||||
"author": "WhyI & Pkmer",
|
"author": "WhyI & Pkmer",
|
||||||
"authorUrl": "https://github.com/whyt-byte"
|
"authorUrl": "https://github.com/whyt-byte"
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "Border",
|
"name": "Border",
|
||||||
"version": "1.7.16",
|
"version": "1.11.3",
|
||||||
"minAppVersion": "0.16.0",
|
"minAppVersion": "0.16.0",
|
||||||
"author": "Akifyss",
|
"author": "Akifyss",
|
||||||
"authorUrl": "https://github.com/Akifyss"
|
"authorUrl": "https://github.com/Akifyss"
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "Solarized",
|
"name": "Solarized",
|
||||||
"version": "1.0.9-beta",
|
"version": "1.1.3",
|
||||||
"minAppVersion": "1.0.0",
|
"minAppVersion": "1.0.0",
|
||||||
"author": "harmtemolder",
|
"author": "harmtemolder",
|
||||||
"authorUrl": "https://github.com/harmtemolder"
|
"authorUrl": "https://github.com/harmtemolder"
|
||||||
|
|
|
@ -1,38 +1,159 @@
|
||||||
:root {
|
.theme-dark,
|
||||||
--base03-rgb: 0, 43, 54;
|
.theme-light {
|
||||||
--base03: rgb(var(--base03-rgb));
|
/* Overwrite default theme colors */
|
||||||
--base02-rgb: 7, 54, 66;
|
--base03: rgb(0, 43, 54);
|
||||||
--base02: rgb(var(--base02-rgb));
|
--base02: rgb(7, 54, 66);
|
||||||
--base01-rgb: 88, 110, 117;
|
--base01: rgb(88, 110, 117);
|
||||||
--base01: rgb(var(--base01-rgb));
|
--base00: rgb(101, 123, 131);
|
||||||
--base00-rgb: 101, 123, 131;
|
--base0: rgb(131, 148, 150);
|
||||||
--base00: rgb(var(--base00-rgb));
|
--base1: rgb(147, 161, 161);
|
||||||
--base0-rgb: 131, 148, 150;
|
--base2: rgb(238, 232, 213);
|
||||||
--base0: rgb(var(--base0-rgb));
|
--base3: rgb(253, 246, 227);
|
||||||
--base1-rgb: 147, 161, 161;
|
--color-yellow: rgb(181, 137, 0);
|
||||||
--base1: rgb(var(--base1-rgb));
|
--color-yellow-rgb: 181, 137, 0;
|
||||||
--base2-rgb: 238, 232, 213;
|
--color-orange: rgb(203, 75, 22);
|
||||||
--base2: rgb(var(--base2-rgb));
|
--color-orange-rgb: 203, 75, 22;
|
||||||
--base3-rgb: 253, 246, 227;
|
--color-red: rgb(220, 50, 47);
|
||||||
--base3: rgb(var(--base3-rgb));
|
--color-red-rgb: 220, 50, 47;
|
||||||
--yellow-rgb: 181, 137, 0;
|
--color-pink: rgb(211, 54, 130);
|
||||||
--yellow: rgb(var(--yellow-rgb));
|
--color-pink-rgb: 211, 54, 130;
|
||||||
--orange-rgb: 203, 75, 22;
|
--color-purple: rgb(108, 113, 196);
|
||||||
--orange: rgb(var(--orange-rgb));
|
--color-purple-rgb: 108, 113, 196;
|
||||||
--red-rgb: 220, 50, 47;
|
--color-blue: rgb(38, 139, 210);
|
||||||
--red: rgb(var(--red-rgb));
|
--color-blue-rgb: 38, 139, 210;
|
||||||
--magenta-rgb: 211, 54, 130;
|
--color-cyan: rgb(42, 161, 152);
|
||||||
--magenta: rgb(var(--magenta-rgb));
|
--color-cyan-rgb: 42, 161, 152;
|
||||||
--violet-rgb: 108, 113, 196;
|
--color-green: rgb(133, 153, 0);
|
||||||
--violet: rgb(var(--violet-rgb));
|
--color-green-rgb: 133, 153, 0;
|
||||||
--blue-rgb: 38, 139, 210;
|
--accent-h: 17.5690607735deg;
|
||||||
--blue: rgb(var(--blue-rgb));
|
--accent-s: 80.4444444444%;
|
||||||
--cyan-rgb: 42, 161, 152;
|
--accent-l: 44.1176470588%;
|
||||||
--cyan: rgb(var(--cyan-rgb));
|
|
||||||
--green-rgb: 133, 153, 0;
|
|
||||||
--green: rgb(var(--green-rgb));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*! @settings
|
||||||
|
name: Solarized Theme Settings
|
||||||
|
id: solarized-theme-settings
|
||||||
|
settings:
|
||||||
|
- id: colors
|
||||||
|
title: Colors
|
||||||
|
type: heading
|
||||||
|
level: 2
|
||||||
|
- id: tones
|
||||||
|
title: Base Tones
|
||||||
|
type: heading
|
||||||
|
level: 3
|
||||||
|
collapsed: true
|
||||||
|
- id: base03
|
||||||
|
title: base03
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(0 43 54)
|
||||||
|
- id: base02
|
||||||
|
title: base02
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(7 54 66)
|
||||||
|
- id: base01
|
||||||
|
title: base01
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(88 110 117)
|
||||||
|
- id: base00
|
||||||
|
title: base00
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(101 123 131)
|
||||||
|
- id: base0
|
||||||
|
title: base0
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(131 148 150)
|
||||||
|
- id: base1
|
||||||
|
title: base1
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(147 161 161)
|
||||||
|
- id: base2
|
||||||
|
title: base2
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(238 232 213)
|
||||||
|
- id: base3
|
||||||
|
title: base3
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(253 246 227)
|
||||||
|
- id: accents
|
||||||
|
description: "NB This does not override Obsidian's built-in accent color (see Appearance > Accent color)"
|
||||||
|
title: Accent Colors
|
||||||
|
type: heading
|
||||||
|
level: 3
|
||||||
|
collapsed: true
|
||||||
|
- id: color-yellow
|
||||||
|
title: yellow
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(181 137 0)
|
||||||
|
alt-format:
|
||||||
|
- id: color-yellow-rgb
|
||||||
|
format: rgb-values
|
||||||
|
- id: color-orange
|
||||||
|
title: orange
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(203 75 22)
|
||||||
|
alt-format:
|
||||||
|
- id: color-orange-rgb
|
||||||
|
format: rgb-values
|
||||||
|
- id: color-red
|
||||||
|
title: red
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(220 50 47)
|
||||||
|
alt-format:
|
||||||
|
- id: color-red-rgb
|
||||||
|
format: rgb-values
|
||||||
|
- id: color-pink
|
||||||
|
title: pink
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(211 54 130)
|
||||||
|
alt-format:
|
||||||
|
- id: color-pink-rgb
|
||||||
|
format: rgb-values
|
||||||
|
- id: color-purple
|
||||||
|
title: purple
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(108 113 196)
|
||||||
|
alt-format:
|
||||||
|
- id: color-purple-rgb
|
||||||
|
format: rgb-values
|
||||||
|
- id: color-blue
|
||||||
|
title: blue
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(38 139 210)
|
||||||
|
alt-format:
|
||||||
|
- id: color-blue-rgb
|
||||||
|
format: rgb-values
|
||||||
|
- id: color-cyan
|
||||||
|
title: cyan
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(42 161 152)
|
||||||
|
alt-format:
|
||||||
|
- id: color-cyan-rgb
|
||||||
|
format: rgb-values
|
||||||
|
- id: color-green
|
||||||
|
title: green
|
||||||
|
type: variable-color
|
||||||
|
format: rgb
|
||||||
|
default: rgb(133 153 0)
|
||||||
|
alt-format:
|
||||||
|
- id: color-green-rgb
|
||||||
|
format: rgb-values
|
||||||
|
*/
|
||||||
.theme-dark {
|
.theme-dark {
|
||||||
/* Overwrite default theme colors */
|
/* Overwrite default theme colors */
|
||||||
--color-base-00: #1e1e1e;
|
--color-base-00: #1e1e1e;
|
||||||
|
@ -55,6 +176,8 @@
|
||||||
--text-faint: var(--base01);
|
--text-faint: var(--base01);
|
||||||
/* File explorer */
|
/* File explorer */
|
||||||
--active-bg: var(--nav-item-background-active);
|
--active-bg: var(--nav-item-background-active);
|
||||||
|
/* Hashtags */
|
||||||
|
--tag-background: hsla(var(--interactive-accent-hsl), 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-light {
|
.theme-light {
|
||||||
|
@ -81,24 +204,12 @@
|
||||||
/* File explorer */
|
/* File explorer */
|
||||||
--active-bg: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.1);
|
--active-bg: hsla(var(--accent-h), var(--accent-s), var(--accent-l), 0.1);
|
||||||
--nav-item-background-active: var(--active-bg);
|
--nav-item-background-active: var(--active-bg);
|
||||||
|
/* Hashtags */
|
||||||
|
--tag-background: hsla(var(--interactive-accent-hsl), 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.theme-dark,
|
.theme-dark,
|
||||||
.theme-light {
|
.theme-light {
|
||||||
/* Overwrite default theme colors */
|
|
||||||
--color-red-rgb: var(--red-rgb);
|
|
||||||
--color-red: var(--red);
|
|
||||||
--color-green-rgb: var(--green-rgb);
|
|
||||||
--color-green: var(--green);
|
|
||||||
--color-orange: var(--orange);
|
|
||||||
--color-yellow: var(--yellow);
|
|
||||||
--color-cyan: var(--cyan);
|
|
||||||
--color-blue: var(--blue);
|
|
||||||
--color-purple: var(--violet);
|
|
||||||
--color-pink: var(--magenta);
|
|
||||||
--accent-h: 18;
|
|
||||||
--accent-s: 80%;
|
|
||||||
--accent-l: 44%;
|
|
||||||
--interactive-accent: var(--color-accent);
|
--interactive-accent: var(--color-accent);
|
||||||
/* Background */
|
/* Background */
|
||||||
--background-secondary: var(--background-primary);
|
--background-secondary: var(--background-primary);
|
||||||
|
@ -106,7 +217,7 @@
|
||||||
/* Text */
|
/* Text */
|
||||||
--text-on-accent: var(--background-primary);
|
--text-on-accent: var(--background-primary);
|
||||||
/* Headings */
|
/* Headings */
|
||||||
--text-title: var(--cyan);
|
--text-title: var(--color-cyan);
|
||||||
--heading-formatting: var(--text-title);
|
--heading-formatting: var(--text-title);
|
||||||
--h1-color: var(--text-title);
|
--h1-color: var(--text-title);
|
||||||
--h2-color: var(--text-title);
|
--h2-color: var(--text-title);
|
||||||
|
@ -115,30 +226,30 @@
|
||||||
--h5-color: var(--text-title);
|
--h5-color: var(--text-title);
|
||||||
--h6-color: var(--text-title);
|
--h6-color: var(--text-title);
|
||||||
/* Links */
|
/* Links */
|
||||||
--link-color: var(--blue);
|
--link-color: var(--color-blue);
|
||||||
--link-color-hover: var(--link-color);
|
--link-color-hover: var(--link-color);
|
||||||
--link-decoration: none;
|
--link-decoration: none;
|
||||||
--link-decoration-hover: underline;
|
--link-decoration-hover: underline;
|
||||||
--link-external-color: var(--violet);
|
--link-external-color: var(--color-purple);
|
||||||
--link-external-color-hover: var(--link-external-color);
|
--link-external-color-hover: var(--link-external-color);
|
||||||
--link-external-decoration: none;
|
--link-external-decoration: none;
|
||||||
--link-external-decoration-hover: underline;
|
--link-external-decoration-hover: underline;
|
||||||
--link-unresolved-color: var(--red);
|
--link-unresolved-color: var(--color-red);
|
||||||
--link-unresolved-color-hover: var(--link-unresolved-color);
|
--link-unresolved-color-hover: var(--link-unresolved-color);
|
||||||
--link-unresolved-opacity: unset;
|
--link-unresolved-opacity: unset;
|
||||||
--link-unresolved-decoration-color: var(--link-unresolved-color);
|
--link-unresolved-decoration-color: var(--link-unresolved-color);
|
||||||
/* Code */
|
/* Code */
|
||||||
--code-normal: var(--text-normal);
|
--code-normal: var(--text-normal);
|
||||||
--code-comment: var(--cyan);
|
--code-comment: var(--color-cyan);
|
||||||
--code-function: var(--blue);
|
--code-function: var(--color-blue);
|
||||||
--code-important: var(--orange);
|
--code-important: var(--color-orange);
|
||||||
--code-keyword: var(--green);
|
--code-keyword: var(--color-green);
|
||||||
--code-operator: var(--code-normal);
|
--code-operator: var(--code-normal);
|
||||||
--code-property: var(--code-normal);
|
--code-property: var(--code-normal);
|
||||||
--code-punctuation: var(--code-normal);
|
--code-punctuation: var(--code-normal);
|
||||||
--code-string: var(--cyan);
|
--code-string: var(--color-cyan);
|
||||||
--code-tag: var(--red);
|
--code-tag: var(--color-red);
|
||||||
--code-value: var(--magenta);
|
--code-value: var(--color-pink);
|
||||||
/* Tables */
|
/* Tables */
|
||||||
--table-header-size: inherit;
|
--table-header-size: inherit;
|
||||||
--table-header-weight: var(--font-bold);
|
--table-header-weight: var(--font-bold);
|
||||||
|
@ -151,6 +262,7 @@
|
||||||
--checkbox-border-color-hover: var(--interactive-accent-hover);
|
--checkbox-border-color-hover: var(--interactive-accent-hover);
|
||||||
/* Hashtags */
|
/* Hashtags */
|
||||||
--tag-padding-x: var(--tag-padding-y);
|
--tag-padding-x: var(--tag-padding-y);
|
||||||
|
--tag-color: var(--color-accent);
|
||||||
/* Focus border */
|
/* Focus border */
|
||||||
--background-modifier-border-focus: var(--interactive-accent);
|
--background-modifier-border-focus: var(--interactive-accent);
|
||||||
}
|
}
|
||||||
|
@ -185,7 +297,7 @@
|
||||||
box-shadow: unset;
|
box-shadow: unset;
|
||||||
mix-blend-mode: unset;
|
mix-blend-mode: unset;
|
||||||
border-radius: unset;
|
border-radius: unset;
|
||||||
background: var(--green);
|
background: var(--color-green);
|
||||||
color: var(--text-on-accent);
|
color: var(--text-on-accent);
|
||||||
padding: 2px 0;
|
padding: 2px 0;
|
||||||
}
|
}
|
||||||
|
@ -218,6 +330,15 @@
|
||||||
/* Search results */
|
/* Search results */
|
||||||
.is-flashing {
|
.is-flashing {
|
||||||
border-radius: unset;
|
border-radius: unset;
|
||||||
|
--code-normal: var(--text-highlight-bg);
|
||||||
|
--link-color: var(--text-on-accent);
|
||||||
|
--link-color-hover: var(--background-primary-alt);
|
||||||
|
--link-decoration: underline;
|
||||||
|
--link-decoration-hover: none;
|
||||||
|
--link-external-color: var(--text-on-accent);
|
||||||
|
--link-external-color-hover: var(--background-primary-alt);
|
||||||
|
--link-external-decoration: underline;
|
||||||
|
--link-external-decoration-hover: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-result-file-matched-text {
|
.search-result-file-matched-text {
|
||||||
|
@ -225,10 +346,17 @@
|
||||||
padding: 2px 0;
|
padding: 2px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.markdown-rendered {
|
||||||
|
/* Unresolved links in preview mode */
|
||||||
|
/* Highlights in preview mode */
|
||||||
|
}
|
||||||
.markdown-rendered .internal-link.is-unresolved:hover {
|
.markdown-rendered .internal-link.is-unresolved:hover {
|
||||||
color: var(--link-unresolved-color-hover);
|
color: var(--link-unresolved-color-hover);
|
||||||
text-decoration-color: var(--link-unresolved-color-hover);
|
text-decoration-color: var(--link-unresolved-color-hover);
|
||||||
}
|
}
|
||||||
|
.markdown-rendered mark {
|
||||||
|
color: var(--text-on-accent);
|
||||||
|
}
|
||||||
|
|
||||||
/* Highlight current line */
|
/* Highlight current line */
|
||||||
.cm-active {
|
.cm-active {
|
||||||
|
@ -249,7 +377,7 @@
|
||||||
.cm-matched-word,
|
.cm-matched-word,
|
||||||
.cm-current-string,
|
.cm-current-string,
|
||||||
.cm-matched-string {
|
.cm-matched-string {
|
||||||
background: var(--yellow);
|
background: var(--color-yellow);
|
||||||
color: var(--text-on-accent);
|
color: var(--text-on-accent);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
padding: 2px 0;
|
padding: 2px 0;
|
||||||
|
@ -265,4 +393,35 @@
|
||||||
box-shadow: 0 0 0 2px var(--color-accent);
|
box-shadow: 0 0 0 2px var(--color-accent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Community theme and plugin browsers */
|
||||||
|
.community-item:hover {
|
||||||
|
border-color: var(--color-accent);
|
||||||
|
}
|
||||||
|
.community-item .suggestion-highlight {
|
||||||
|
color: var(--text-on-accent);
|
||||||
|
font-weight: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Vimrc Support Plugin */
|
||||||
|
div.status-bar-item.plugin-obsidian-vimrc-support.vimrc-support-vim-mode {
|
||||||
|
color: var(--text-on-accent);
|
||||||
|
}
|
||||||
|
div.status-bar-item.plugin-obsidian-vimrc-support.vimrc-support-vim-mode[data-vim-mode=normal] {
|
||||||
|
background-color: var(--color-blue);
|
||||||
|
}
|
||||||
|
div.status-bar-item.plugin-obsidian-vimrc-support.vimrc-support-vim-mode[data-vim-mode=insert] {
|
||||||
|
background-color: var(--color-green);
|
||||||
|
}
|
||||||
|
div.status-bar-item.plugin-obsidian-vimrc-support.vimrc-support-vim-mode[data-vim-mode=visual] {
|
||||||
|
background-color: var(--color-pink);
|
||||||
|
}
|
||||||
|
div.status-bar-item.plugin-obsidian-vimrc-support.vimrc-support-vim-mode[data-vim-mode=replace] {
|
||||||
|
background-color: var(--red);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Mermaid */
|
||||||
|
.mermaid tspan {
|
||||||
|
fill: var(--text-on-accent);
|
||||||
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=theme.css.map */
|
/*# sourceMappingURL=theme.css.map */
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"name": "Things",
|
||||||
|
"version": "2.1.20",
|
||||||
|
"minAppVersion": "1.0.0",
|
||||||
|
"author": "@colineckert",
|
||||||
|
"authorUrl": "https://twitter.com/colineckert"
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,282 @@
|
||||||
|
{
|
||||||
|
"main": {
|
||||||
|
"id": "daafb3fb0fae7c07",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "6431808b47b2ef7f",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "2eebb523b5687bd3",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "20-Area/21-Person/消费--电子类/已有/ThinkpadX1Gen6/软件管理(Fedora41).md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false,
|
||||||
|
"backlinks": true,
|
||||||
|
"backlinkOpts": {
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "软件管理(Fedora41)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "c1d56acb22ef0475",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "20-Area/22-Work/221-Linux/App/flatpak配置.md",
|
||||||
|
"mode": "source",
|
||||||
|
"source": false,
|
||||||
|
"backlinks": true,
|
||||||
|
"backlinkOpts": {
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "flatpak配置"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "vertical"
|
||||||
|
},
|
||||||
|
"left": {
|
||||||
|
"id": "360f79a5b1114dae",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "b177ea0da7a3709e",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "d8a10fbcf63e868a",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "search",
|
||||||
|
"state": {
|
||||||
|
"query": "",
|
||||||
|
"matchingCase": true,
|
||||||
|
"explainSearch": false,
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical"
|
||||||
|
},
|
||||||
|
"icon": "lucide-search",
|
||||||
|
"title": "搜索"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "d2d1f1d76e2d692f",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "file-explorer",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"autoReveal": false
|
||||||
|
},
|
||||||
|
"icon": "lucide-folder-closed",
|
||||||
|
"title": "文件列表"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"currentTab": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 300
|
||||||
|
},
|
||||||
|
"right": {
|
||||||
|
"id": "379e28e1ea2c3698",
|
||||||
|
"type": "split",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "8a05bc50f6f04a17",
|
||||||
|
"type": "tabs",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "2a958ee7197ec1a3",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "backlink",
|
||||||
|
"state": {
|
||||||
|
"file": "个人日记/2024-10-07.md",
|
||||||
|
"collapseAll": false,
|
||||||
|
"extraContext": false,
|
||||||
|
"sortOrder": "alphabetical",
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": "",
|
||||||
|
"backlinkCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-coming-in",
|
||||||
|
"title": "2024-10-07 的反向链接列表"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "8c3fffde5d155a1d",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outgoing-link",
|
||||||
|
"state": {
|
||||||
|
"file": "个人日记/2024-10-07.md",
|
||||||
|
"linksCollapsed": false,
|
||||||
|
"unlinkedCollapsed": true
|
||||||
|
},
|
||||||
|
"icon": "links-going-out",
|
||||||
|
"title": "2024-10-07 的出链列表"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "3148add0b2799cc1",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "tag",
|
||||||
|
"state": {
|
||||||
|
"sortOrder": "frequency",
|
||||||
|
"useHierarchy": true,
|
||||||
|
"showSearch": true,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-tags",
|
||||||
|
"title": "标签"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "dc47b8c627f22fb8",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "outline",
|
||||||
|
"state": {
|
||||||
|
"file": "20-Area/21-Person/消费--电子类/已有/ThinkpadX1Gen6/软件管理(Fedora41).md",
|
||||||
|
"followCursor": false,
|
||||||
|
"showSearch": false,
|
||||||
|
"searchQuery": ""
|
||||||
|
},
|
||||||
|
"icon": "lucide-list",
|
||||||
|
"title": "软件管理(Fedora41) 的大纲"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "51c33ec485966d2e",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "calendar",
|
||||||
|
"state": {},
|
||||||
|
"icon": "calendar-with-checkmark",
|
||||||
|
"title": "Calendar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "dfc2eecd54ffaead",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "git-history-view",
|
||||||
|
"state": {},
|
||||||
|
"icon": "lucide-file",
|
||||||
|
"title": "插件不再活动"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "f4a3c0e73e97ff21",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "advanced-tables-toolbar",
|
||||||
|
"state": {},
|
||||||
|
"icon": "spreadsheet",
|
||||||
|
"title": "Advanced Tables"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"currentTab": 2
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"direction": "horizontal",
|
||||||
|
"width": 279.5
|
||||||
|
},
|
||||||
|
"left-ribbon": {
|
||||||
|
"hiddenItems": {
|
||||||
|
"switcher:打开快速切换": false,
|
||||||
|
"graph:查看关系图谱": false,
|
||||||
|
"canvas:新建白板": false,
|
||||||
|
"daily-notes:打开/创建今天的日记": false,
|
||||||
|
"templates:插入模板": false,
|
||||||
|
"command-palette:打开命令面板": false,
|
||||||
|
"table-editor-obsidian:Advanced Tables Toolbar": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"active": "2eebb523b5687bd3",
|
||||||
|
"lastOpenFiles": [
|
||||||
|
"20-Area/22-Work/221-Linux/App/flatpak配置.md",
|
||||||
|
"20-Area/21-Person/消费--电子类/已有/ThinkpadX1Gen6/软件管理(Fedora41).md",
|
||||||
|
"20-Area/21-Person/消费--电子类/已有/ThinkpadX1Gen6/系统问题(Fedora41)以及解决记录.md",
|
||||||
|
"20-Area/21-Person/消费--电子类/已有/ThinkpadX1Gen6/指纹问题解决.md",
|
||||||
|
"20-Area/21-Person/消费--电子类/已有/ThinkpadX1Gen6/4g相关操作与问题解决.md",
|
||||||
|
"20-Area/21-Person/消费--电子类/软件订阅更新列表.md",
|
||||||
|
"20-Area/21-Person/消费--电子类/调研",
|
||||||
|
"20-Area/21-Person/消费--电子类/已有",
|
||||||
|
"20-Area/22-Work/221-Linux/SystemApp/内核开发包.md",
|
||||||
|
"20-Area/21-Person/消费-电子/ThinkpadX1Gen6/安装问题解决笔记.md",
|
||||||
|
"20-Area/22-Work/221-Linux/SystemApp/Waydroid常见操作.md",
|
||||||
|
"20-Area/22-Work/221-Linux/App/ranger.md",
|
||||||
|
"20-Area/22-Work/221-Linux/App/neovim.md",
|
||||||
|
"20-Area/22-Work/221-Linux/SystemApp/zsh安装与操作.md",
|
||||||
|
"10-Project/100-日常记录/日常记录.md",
|
||||||
|
"10-Project/101-整理/整体规划.md",
|
||||||
|
"20-Area/21-Person/内容.md",
|
||||||
|
"20-Area/22-Work/222-ReadNote/armv8体系结构/ARMv8指令汇总 (重要).md",
|
||||||
|
"20-Area/22-Work/222-ReadNote/armv8体系结构/LDS文件说明.md",
|
||||||
|
"20-Area/22-Work/222-ReadNote/armv8体系结构/ELF文件描述.md",
|
||||||
|
"20-Area/22-Work/222-ReadNote/armv8体系结构/ARMv8汇编语法汇总 (重要).md",
|
||||||
|
"20-Area/22-Work/222-ReadNote/armv8体系结构/ARMv8寄存器汇总 (重要).md",
|
||||||
|
"20-Area/22-Work/222-ReadNote/armv8体系结构/ARMv8体系结构Features (待补充).md",
|
||||||
|
"20-Area/22-Work/222-ReadNote/armv8体系结构/图床/mpidr说明.png",
|
||||||
|
"20-Area/22-Work/221-Linux/App",
|
||||||
|
"20-Area/22-Work/223-Utils/Compile/Scons.md",
|
||||||
|
"20-Area/22-Work/223-Utils/Compile/Ninja.md",
|
||||||
|
"20-Area/22-Work/223-Utils/Compile/Make.md",
|
||||||
|
"20-Area/22-Work/223-Utils/Compile",
|
||||||
|
"20-Area/22-Work/223-Utils/git/git特殊操作.md",
|
||||||
|
"20-Area/22-Work/223-Utils/git",
|
||||||
|
"20-Area/22-Work/223-Utils",
|
||||||
|
"20-Area/22-Work/223-Tools",
|
||||||
|
"20-Area/22-Work/221-Linux/SystemApp",
|
||||||
|
"20-Area/22-Work/221-Linux/Tools",
|
||||||
|
"20-Area/22-Work/221-Linux/编译/Scons.md",
|
||||||
|
"20-Area/22-Work/221-Linux/编译",
|
||||||
|
"20-Area/22-Work/222-ReadNote/Rt-thread OS/配图.canvas",
|
||||||
|
"91-Pictures/Pasted image 20241009214854.png",
|
||||||
|
"91-Pictures/Pasted image 20240812164701.png",
|
||||||
|
"10-Project/102-上班/备忘/数据备忘/图床/功耗板拨码布局.png",
|
||||||
|
"10-Project/102-上班/备忘/数据备忘/图床/Pasted image 20240322101735.png",
|
||||||
|
"10-Project/102-上班/日记/图床/文档sramP电描述错误.png",
|
||||||
|
"10-Project/102-上班/日记/图床/usb0网口的mount.png",
|
||||||
|
"10-Project/102-上班/日记/图床/usb0和pc的性能测试.png",
|
||||||
|
"10-Project/102-上班/日记/图床/ldd-issue.png",
|
||||||
|
"20-Area/21-个人管理/未命名.canvas",
|
||||||
|
"Untitled Diagram.svg",
|
||||||
|
"未命名.canvas",
|
||||||
|
"工作记录/流程分析/固件升级.canvas",
|
||||||
|
"工作记录/日报/未命名.canvas",
|
||||||
|
"读书笔记/Rt-thread OS/配图.canvas"
|
||||||
|
]
|
||||||
|
}
|
|
@ -1,4 +0,0 @@
|
||||||
- [ ] 调试waydroid 补充一个文档
|
|
||||||
- [ ] 需要整理linux系统脑图到obsidian
|
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
- iic的开漏输出,需要上拉电阻。
|
|
|
@ -1,2 +0,0 @@
|
||||||
尝试笔记本发射wifi, 设置-网络-移动热点
|
|
||||||
黑神话普通结局
|
|
|
@ -1,4 +0,0 @@
|
||||||
- 测试linux下的obs
|
|
||||||
- 安装intel vpu库
|
|
||||||
- 安装ffmpeg
|
|
||||||
- 安装最新版本的obs 设置要改成高级模式才可以配置quicksync作为编码方法
|
|
|
@ -1,2 +0,0 @@
|
||||||
- [Linux App]安装了BBDown
|
|
||||||
- [Linux App]安装了peazip
|
|
|
@ -1,2 +0,0 @@
|
||||||
- [Linux app] 安装lvim
|
|
||||||
- [Linux app] 安装飞书
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
- Linux Fedora App安装 [[软件管理(Fedora41)]]
|
||||||
|
- [x] 安装lunarvim ✅ 2025-03-01
|
||||||
|
- [x] 安装飞书 ✅ 2025-03-01
|
||||||
|
- [x] 安装了BBDown ✅ 2025-03-01
|
||||||
|
- [x] 安装了peazip ✅ 2025-03-01
|
||||||
|
- 2024-10-07
|
||||||
|
- [ ] 测试linux下的obs
|
||||||
|
- 安装intel vpu库
|
||||||
|
- 安装ffmpeg
|
||||||
|
- 安装最新版本的obs 设置要改成高级模式才可以配置quicksync作为编码方法
|
||||||
|
- 2024-09-08
|
||||||
|
- [ ] 调试waydroid 补充一个文档
|
||||||
|
- [ ] 需要整理linux系统脑图到obsidian
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,14 @@
|
||||||
#提纲
|
#提纲类
|
||||||
|
- 整个笔记应该是一种“记忆的呈现”,以及“必要信息“的积累。
|
||||||
|
- 但是所谓的”必要信息“是否还必要值得商榷。因为诸如秘塔这类的搜索只需要很短的时间就可以搜索出答案,笔记中的”必要信息”到底是否还需要?
|
||||||
|
- 所以笔记更主要是一种记忆的呈现,让人快速回忆起之前经历的事情以正确的快速复用。
|
||||||
|
|
||||||
- Project 有时有终的任务叫做项目,笔记中重点记录“过程”,“心得”,“备忘”
|
- Project 有时有终的任务叫做项目,笔记中重点记录“过程”,“心得”,“备忘”
|
||||||
- 整理 20240228
|
- 快速信息
|
||||||
|
- 整理
|
||||||
|
- [x] 整合老obsidian ✅ 2025-03-02
|
||||||
|
- [ ] 整合Onenote
|
||||||
|
- [ ] 整合Wiznote
|
||||||
- 上班
|
- 上班
|
||||||
- Area 应该更多是主观输出的内容或者是对内容的再整理,客观的内容放到Resource中
|
- Area 应该更多是主观输出的内容或者是对内容的再整理,客观的内容放到Resource中
|
||||||
- 个人管理 Excel
|
- 个人管理 Excel
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#提纲
|
#提纲类
|
||||||
- 当前整体管理
|
- 当前整体管理
|
||||||
- 个人管理
|
- 个人管理
|
||||||
- 财务管理
|
- 财务管理
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
### 当前问题列表
|
||||||
|
- [ ] 无法切换语言,切换为中文之后切不回去了
|
||||||
|
- [ ] 4G不工作
|
||||||
|
- [ ] 无法进入gnome的wayland session ok
|
||||||
|
- [ ] 无法使用手势 ok
|
||||||
|
### 问题解决记录
|
||||||
|
- 4G相关问题
|
||||||
|
- sudo mmcli -m 0
|
||||||
|
- 指纹问题解决
|
||||||
|
- sudo dnf copr enable sneexy/python-validity
|
||||||
|
- sudo dnf install open-fprintd fprintd-clients fprintd-clients-pam python3-validity
|
||||||
|
- 查看python3-validity的状态 systemctl status python3-validity
|
||||||
|
- 输入fprintd-enroll确认指纹功能
|
|
@ -1,5 +1,5 @@
|
||||||
## 市场
|
## 市场
|
||||||
- Flatpak // flatpak remote-ls <仓库名称>
|
- Flatpak // flatpak remote-ls <仓库名称> [[flatpak配置]]
|
||||||
- fedora flatpak
|
- fedora flatpak
|
||||||
- flathub
|
- flathub
|
||||||
- Fedora Repo // dnf repolist
|
- Fedora Repo // dnf repolist
|
|
@ -1 +0,0 @@
|
||||||
sudo mmcli -m 0
|
|
|
@ -1,4 +0,0 @@
|
||||||
- 无法切换语言,切换为中文之后切不回去了
|
|
||||||
- 4G不工作
|
|
||||||
- 无法进入gnome的wayland session ok
|
|
||||||
- 无法使用手势 ok
|
|
|
@ -1,4 +0,0 @@
|
||||||
- sudo dnf copr enable sneexy/python-validity
|
|
||||||
- sudo dnf install open-fprintd fprintd-clients fprintd-clients-pam python3-validity
|
|
||||||
- 查看python3-validity的状态 systemctl status python3-validity
|
|
||||||
- 输入fprintd-enroll确认指纹功能
|
|
|
@ -0,0 +1 @@
|
||||||
|
#未完成
|
|
@ -1,3 +1,4 @@
|
||||||
|
#未完成
|
||||||
- 修改默认编辑器 修改EDITOR环境变量即可
|
- 修改默认编辑器 修改EDITOR环境变量即可
|
||||||
- .config/ranger
|
- .config/ranger
|
||||||
- rifle.conf
|
- rifle.conf
|
|
@ -0,0 +1 @@
|
||||||
|
#未完成
|
|
@ -7,7 +7,7 @@
|
||||||
- ldr x1, label 注意!label是相对于当前pc位置的偏移
|
- ldr x1, label 注意!label是相对于当前pc位置的偏移
|
||||||
- 变换
|
- 变换
|
||||||
- 基地址加偏移 ldr r5, [sp, #24] // 取栈上的值
|
- 基地址加偏移 ldr r5, [sp, #24] // 取栈上的值
|
||||||
- 前变基 ldr tmp1w, [src, #-4]! // memmove函数
|
- 前变基 ldr tmp1w, [src, \#-4]! // memmove函数
|
||||||
- 后变基 ldr w0, [x1], #4 // memcpy
|
- 后变基 ldr w0, [x1], #4 // memcpy
|
||||||
- 待整理
|
- 待整理
|
||||||
- stp/ldp
|
- stp/ldp
|
||||||
|
|
Loading…
Reference in New Issue