Neofetch的可替代品给fastfetch
简介由于neofetch的停止更新,我们不得不寻找一些替代品比如 FastFetch 是neofetch的一个分支
下载1brew install fastfetch
Gostty
简介美观快速开箱即用的终端模拟器
下载1234export VER="1.1.3" && export ARCH="x86_64"wget https://github.com/psadi/ghostty-appimage/releases/download/v${VER}/Ghostty-${VERSION}-${ARCH}.AppImagechmod +x Ghostty-${VER}-${ARCH}.AppImagesudo install ./Ghostty-${VER}-${ARCH}.AppImage /usr/local/bin/ghostty
随后自行添加桌面环境
配置~/.config/ghostty/config
123maximize = truefont-size = 20font-family = MapleMono-NF-CN
Homebrew
简介一款Like-Unix的通用包管理器
下载12345/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"echo >> ~/.zshrcecho 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> ~/.zshrcsudo apt-get install build-essentialeval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
yazi
简介一款开箱即用 扩展性强的终端文件管理器
安装请在此之前安装Nerd Font
1brew install yazi ffmpeg sevenzip jq poppler fd ripgrep fzf zoxide imagemagick
插件和配置将此代码放到您的zshrc/bashrc中
12345678function y() { local tmp="$(mktemp -t "yazi-cwd.XXXXXX")" cwd yazi "$@" --cwd-file="$tmp" if cwd="$(command cat -- "$tmp")" && [ -n "$cwd" ] && [ "$cwd" != "$PWD" ]; then builtin cd -- "$cwd" fi rm -f -- "$tmp&q ...
fzf
简介一款模糊文件查找器参考
下载1brew install fzf
配置在.zshrc中添加export FZF_COMPLETION_TRIGGER='\'
使用按下\+Tab来启动或fzf
加速器无法访问Github
一键脚本
1234567echo "nameserver 114.114.114.114" | sudo tee -a /etc/resolv.confprintf "\199.232.68.133 raw.githubusercontent.com\n\199.232.68.133 user-images.githubusercontent.com\n\199.232.68.133 avatars2.githubusercontent.com\n\199.232.68.133 avatars1.githubusercontent.com\n" | sudo tee -a /etc/hosts
lazygit
简介高效的Git可视化管理
下载1brew install lazygit
Lazygit 按键绑定Keybindings_zh-CN.md
图例:<c-b> 意味着ctrl+b, <a-b>意味着Alt+b, B 意味着shift+b
全局键绑定
Key
Action
Info
<c-r>
切换到最近的仓库
<pgup> (fn+up/shift+k)
向上滚动主面板
<pgdown> (fn+down/shift+j)
向下滚动主面板
@
打开命令日志菜单
查看命令日志的选项,例如显示/隐藏命令日志以及聚焦命令日志
P
推送
推送当前分支到它的上游。如果上游为配置,你可以在弹窗中配置上游分支。
p
拉取
从当前分支的远程分支获取改动。如果上游为配置,你可以在弹窗中配置上游分支。
)
Increase rename similarity threshold
Increase the similarity threshold for a deletion and additi ...
Ranger
简介一款在终端中的文件管理器
下载1sudo apt install ranger
配置生成默认配置文件1ranger --copy-config=all
文件图标需要安装nerdfont 本文不过多赘述 有需自行搜索下载
1git clone https://github.com/cdump/ranger-devicons2 ~/.config/ranger/plugins/devicons2
在~/.config/ranger/rc.conf中添加default_linemode devicons2
照片预览w3m下载
1sudo apt install w3m-img
在~/.config/ranger/rc.conf中更改set preview_images true
ueberzug下载
1sudo apt install ueberzug
~/.config/ranger/rc.conf
12set preview_images trueset preview_images_method ueberzug
Git可视在~/.config/ranger/rc.conf中更改 ...
Kitty
介绍kitty 是一款极好的终端模拟器
快速
美观
安装12curl -L https://sw.kovidgoyal.net/kitty/installer.sh | sh /dev/stdinsudo ln -s ~/.local/kitty.app/bin/kitty /usr/local/bin/kitty
随后自行添加桌面环境
配置运行以下命令,已来更改主题通过/键搜索 推荐Catppuccin-Mocha
1kitty +kitten themes
随后按下M键来修改配置主题
~/.config/kitty/kitty.conf
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051# BEGIN_KITTY_THEME# Catppuccin-Mochainclude current-theme.conf# END_KITTY_THEME# fontfont_size 24font_family Maple M ...