美化你的终端

2021-08-11 10:32:41 浏览数 (1)

美化你的终端

2019年08月09日 280 字 大概 1 分钟

自带的 PowerShell 虽然有了自定义颜色等功能,但还是太丑,这一篇文章将帮你打造 Windows10 上最美终端。

安装 Fluent Terminal 建议使用 Terminus

Fluent Terminal 是一个基于 UWP 和 Web 技术的终端,相比较 Terminus,占用资源更少,而且有中文翻译,并且设置页还有 GUI。

在以下链接下载最新版 https://github.com/felixse/FluentTerminal/releases

解压到任意位置,打开目录,右键 Install.ps1 使用 PowerShell 运行,选择 Sideloading(旁加载应用)安装

安装完成

安装 Terminus

https://eugeny.github.io/terminus/

安装 oh-my-posh 与 posh-git

posh-git:此模块用于将 git 集成于 PowerShell 中 oh-my-posh:本次美化主角,带色的箭头标签

代码语言:javascript复制
Set-ExecutionPolicy Bypass
Install-Module posh-git -Scope CurrentUser
Install-Module oh-my-posh -Scope CurrentUser

启用 oh-my-posh 与 posh-git

代码语言:javascript复制
Import-Module posh-git
Import-Module oh-my-posh

设置主题

代码语言:javascript复制
Set-Theme Agnoster

可选列表

  • Agnoster
  • Avit
  • Darkblood
  • Fish
  • Honukai
  • Paradox
  • PowerLine
  • robbyrussell
  • Sorin
  • tehrob

输入获取配置项目录

代码语言:javascript复制
     $profile

打开控制台输出目录中的文件,输入配置项并保存

代码语言:javascript复制
    Import-Module oh-my-posh
    Set-Theme Agnoster

打开 Fluent Terminal 查看效果

0 人点赞