Command

fastfetch

2024-03-06

fastfetch 是一款类似 [[neofetch]] 的工具,同样用于获取信息并用漂亮的格式展示。

安装

[[macOS]] 通过 [[Homebrew]] 安装:

Terminal window
1
brew install fastfetch

使用

默认配置运行:

Terminal window
1
fastfetch

参数

  • --logo
    • none 不显示 logo
    • 'windows’: 指定 LOGO
  • -c all: 显示所有信息

配置

配置文件默认不存在,需要手动创建:

Terminal window
1
fastfetch --gen-config

可以在 ~/.config/fastfetch/config.jsonc 找到,初始的配置是这样的:

1
{
2
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
3
"modules": [
4
"title",
5
"separator",
6
"os",
7
"host",
8
"kernel",
9
"uptime",
10
"packages",
11
"shell",
12
"display",
13
"de",
14
"wm",
15
"wmtheme",
16
"theme",
17
"icons",
18
"font",
19
"cursor",
20
"terminal",
21
"terminalfont",
22
"cpu",
23
"gpu",
24
"memory",
25
"swap",
26
"disk",
27
"localip",
28
"battery",
29
"poweradapter",
30
"locale",
31
"break",
32
"colors"
33
]
34
}

配置修改后即生效,使用时无须指定。可以参考官方的示例,个人比较喜欢其中的 9 和 12。

参考