From d0847070c9774c8e544e2f2cfd12e108909a8a3c Mon Sep 17 00:00:00 2001 From: verdant Date: Wed, 11 Feb 2026 12:41:10 +0800 Subject: add note "i3-refresh-rate" --- notes/i3-refresh-rate.org | 17 +++ notes/index.org | 1 + notes/tags/emacs.org | 2 +- notes/tags/technology.org | 1 + public/generate-tag-pages.html | 2 +- public/generate-tag-pages.html~ | 2 +- public/how-do-i-build-this-site.html | 2 +- public/how-do-i-build-this-site.html~ | 2 +- public/i3-refresh-rate.html | 226 +++++++++++++++++++++++++++++ public/index.html | 3 +- public/index.html~ | 2 +- public/radical-minimalist-web-design.html | 2 +- public/radical-minimalist-web-design.html~ | 2 +- public/tags/emacs.html | 2 +- public/tags/emacs.html~ | 2 +- public/tags/minimalism.html | 2 +- public/tags/minimalism.html~ | 2 +- public/tags/philosophy.html | 2 +- public/tags/philosophy.html~ | 2 +- public/tags/technology.html | 3 +- public/tags/technology.html~ | 3 +- public/tags/web.html | 2 +- public/tags/web.html~ | 2 +- public/test.html | 2 +- public/test.html~ | 2 +- template/template.org | 1 + 26 files changed, 270 insertions(+), 21 deletions(-) create mode 100644 notes/i3-refresh-rate.org create mode 100644 public/i3-refresh-rate.html diff --git a/notes/i3-refresh-rate.org b/notes/i3-refresh-rate.org new file mode 100644 index 0000000..099b4fd --- /dev/null +++ b/notes/i3-refresh-rate.org @@ -0,0 +1,17 @@ +#+title: i3刷新率问题 +#+filetags: :technology: +#+SETUPFILE: ~/niwa/template/setup/minimal.setup +#+EXPORT_FILE_NAME: /home/yingyu5658/niwa/public/i3-refresh-rate.html + +查看当前显示器名称 + +#+BEGIN_SRC +xrandr +#+END_SRC + +输出可能包含类似 =HDMI-0= 或 =DP-0= + +#+BEGIN_SRC +xrandr --output DP-0 --mode 2560x1080 --rate 200 +glxgears -info # 查看帧数 +#+END_SRC diff --git a/notes/index.org b/notes/index.org index 5733541..8052f7b 100644 --- a/notes/index.org +++ b/notes/index.org @@ -9,6 +9,7 @@ This is a [[https://motherfuckingwebsite.com/][motherfucking-website]]. 这里是 Verdant 的杂物间,[[https://www.glowisle.me/][映屿]]的一部分,也是「[[./radical-minimalist-web-design.org][激进极简主义网页设计]]」的实验田。内容的风格上更像数字花园。会发布一些半成品文章、某些问题的解决方案或笔记。如果你对这个站点使用了什么技术感兴趣,可以阅读[[./how-do-i-build-this-site.org][《我是如何构建这个站点的》]]。 ** 最近更新 +- [[./i3-refresh-rate.org][i3-wm刷新率问题]] - [[./generate-tag-pages.org][生成标签页面]] - [[./how-do-i-build-this-site.org][我是如何构建这个站点的]] - [[./radical-minimalist-web-design.org][激进极简主义网页设计]] diff --git a/notes/tags/emacs.org b/notes/tags/emacs.org index 86399c4..40bfec3 100644 --- a/notes/tags/emacs.org +++ b/notes/tags/emacs.org @@ -2,4 +2,4 @@ #+SETUPFILE: ../../template/setup/minimal.setup - [[file:../how-do-i-build-this-site.org][我是如何构建这个站点的]] -- [[../generate-tag-pages.org][生成标签页面]] +- [[file:../generate-tag-pages.org][生成标签页面]] diff --git a/notes/tags/technology.org b/notes/tags/technology.org index 140e897..f0eab24 100644 --- a/notes/tags/technology.org +++ b/notes/tags/technology.org @@ -1,5 +1,6 @@ #+title: #technology #+SETUPFILE: ../../template/setup/minimal.setup +- [[file:../i3-refresh-rate.org][i3刷新率问题]] - [[file:../how-do-i-build-this-site.org][我是如何构建这个站点的]] - [[file:../generate-tag-pages.org][生成标签页面]] diff --git a/public/generate-tag-pages.html b/public/generate-tag-pages.html index 5926052..c1ab6df 100644 --- a/public/generate-tag-pages.html +++ b/public/generate-tag-pages.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + 生成标签页面 diff --git a/public/generate-tag-pages.html~ b/public/generate-tag-pages.html~ index 3893910..1c9d6c1 100644 --- a/public/generate-tag-pages.html~ +++ b/public/generate-tag-pages.html~ @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + 生成标签页面 diff --git a/public/how-do-i-build-this-site.html b/public/how-do-i-build-this-site.html index ea7a4d6..f5ff6fe 100644 --- a/public/how-do-i-build-this-site.html +++ b/public/how-do-i-build-this-site.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + 我是如何构建这个站点的 diff --git a/public/how-do-i-build-this-site.html~ b/public/how-do-i-build-this-site.html~ index 0ff8b18..212ab35 100644 --- a/public/how-do-i-build-this-site.html~ +++ b/public/how-do-i-build-this-site.html~ @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + 我是如何构建这个站点的 diff --git a/public/i3-refresh-rate.html b/public/i3-refresh-rate.html new file mode 100644 index 0000000..19cf302 --- /dev/null +++ b/public/i3-refresh-rate.html @@ -0,0 +1,226 @@ + + + + + + + +i3刷新率问题 + + + + + +
+

i3刷新率问题

+

+查看当前显示器名称 +

+ +
+xrandr
+
+ +

+输出可能包含类似 HDMI-0DP-0 +

+ +
+xrandr --output DP-0 --mode 2560x1080 --rate 200
+glxgears -info  # 查看帧数
+
+
+ + diff --git a/public/index.html b/public/index.html index 2512f30..f5febac 100644 --- a/public/index.html +++ b/public/index.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + Verdant的杂物间 @@ -228,6 +228,7 @@ This is a motherfucking-website.

最近更新