From ae78e3d2a5e14a95bdce0a63766d898b50633539 Mon Sep 17 00:00:00 2001 From: suoyuan666 <107405806+suoyuan666@users.noreply.github.com> Date: Sun, 9 Jun 2024 11:09:38 +0800 Subject: [PATCH] update site --- src/content/blog/cmake_intro.md | 2 +- src/content/blog/notes.md | 6 +++++- src/styles/base.css | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/content/blog/cmake_intro.md b/src/content/blog/cmake_intro.md index 703e04d..111990b 100644 --- a/src/content/blog/cmake_intro.md +++ b/src/content/blog/cmake_intro.md @@ -258,7 +258,7 @@ $ ./build/test/main_test [ PASSED ] 1 test. ``` -这里有一个问题,我使用的是 Visual Studio Code 写代码,用 clangd 插件提高 C/C++ 的编程,我一开始用 `ln -s` 给 **build/compile_commands.json** 文件在根目录建一个软链接,但是 clangd 的没有成功解析出 **test/main_test.cpp** 文件的头文件位置,后来我安装了bear,特地 `bear -- cmake` 生成了一个 **compile_commands.json** 才成功解析。 +这里有一个问题,我使用的是 Visual Studio Code 写代码,用 clangd 插件提高 C/C++ 的编程体验,我一开始用 `ln -s` 给 **build/compile_commands.json** 文件在根目录建一个软链接,但是 clangd 的没有成功解析出 **test/main_test.cpp** 文件的头文件位置,后来我安装了bear,特地 `bear -- cmake` 生成了一个 **compile_commands.json** 才成功解析。 不过后来又好使了,不好评价那时候发生了什么。 diff --git a/src/content/blog/notes.md b/src/content/blog/notes.md index ae4b492..fda9af4 100644 --- a/src/content/blog/notes.md +++ b/src/content/blog/notes.md @@ -66,6 +66,10 @@ NVIDIA 关于 XWayland 的 GPU 显示同步补丁已经在 [Xorg](https://gitlab --- -今天安装了 Arch Linux + KDE Plasma,这回我使用 archinstall 安装,感觉还不错。不得不说,AUR 软件是真多,我很多软件什么的都可以找到,直接用 paru 安装就行。而且我发现 NVIDIA + XWayland 好像没有那么难绷了。不过还是等到 nvidia-driver 到 555 版本以及 KDE Plasma 6.1 的吧。 +今天安装了 Arch Linux + KDE Plasma,这回我使用 [archinstall](https://github.com/archlinux/archinstall) 安装,感觉还不错。不得不说,AUR 软件是真多,我很多软件什么的都可以找到,直接用 `paru` 安装就行。而且我发现 NVIDIA + XWayland 好像没有那么难绷了。不过还是等到 nvidia-driver 到 555 版本以及 KDE Plasma 6.1 的吧。 + +--- + +NVIDIA + XWayland 还是很难绷,还是等到 nvidia-driver stable 更新到 555 的吧。 --- diff --git a/src/styles/base.css b/src/styles/base.css index 622434b..7021c18 100644 --- a/src/styles/base.css +++ b/src/styles/base.css @@ -28,9 +28,9 @@ html[data-theme="dark"] #sun-svg { display: block; } - p { + /* p { text-indent: 2em; - } + } */ body { @apply flex min-h-[100svh] flex-col bg-skin-fill font-mono text-skin-base selection:bg-skin-accent selection:bg-opacity-70 selection:text-skin-inverted;