Arch_Random_welcome

先看效果:
cxNUu.png
cxvPl.png

想让终端更有活力?为何不给你的终端添加一点随机彩虹🌈欢迎词?

步骤很简单

  • 安装lolcat
    • sudo pacman -S lolcat
  • 创建用来储存欢迎语的文档,并在里面添加你想要的欢迎语,用空行区分
    • cKCeK.png
  • 然后在你的~/.zshrc文件或者~/.bashrc中加入以下脚本(取决于你用zsh还是bash)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 设置函数从文件中随机选择ASCII艺术画并显示
show_random_ascii_art() {
local art_file="这里是你欢迎语文档的路径"
local art_array=()
local art

# 从文件中读取ASCII艺术画到数组中
while IFS= read -r line || [[ -n "$line" ]]; do
if [[ -n "$line" ]]; then
art+="\n$line"
else
art_array+=("$art")
art=""
fi
done < "$art_file"

# 从数组中随机选择一个ASCII艺术画并显示
local random_index=$(( RANDOM % ${#art_array[@]} ))
echo -e "${art_array[$random_index]}" | lolcat
}

# 在启动时显示随机选择的ASCII艺术画
show_random_ascii_art

然后每次开启终端的时候就会有随机的欢迎词了!

我去才发现我welcome少打了个e,算了,不改了,就这样吧,