码迷,mamicode.com
首页 > Windows程序 > 详细

windows terminal美化

时间:2020-06-14 16:29:35      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:hub   jin   图片   current   注意   port   force   tail   出现   

安装字体

参考:5 个 PowerShell 主题,让你的 Windows 终端更好看 - 少数派

首先需要注意的是,oh-my-posh 主题使用了一些非 Powerline 字体不支持的字符,因此如果你使用默认的等宽字体(比如 Consolas),在显示过程中就会出现乱码、字符显示不全的现象。
所以使用更纱黑体,直接安装就行

安装配置 oh-my-posh

参考:5 个 PowerShell 主题,让你的 Windows 终端更好看 - 少数派
Windows Terminal 终极美化 - 禅境花园

安装 posh-git 和 oh-my-posh 这两个模块

Install-Module posh-git -Scope CurrentUser 
Install-Module oh-my-posh -Scope CurrentUser

让 PowerShell 主题配置生效
新增(或修改)你的 PowerShell 配置文件
如果之前没有配置文件,就新建一个 PowerShell 配置文件

if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force }

用记事本打开配置文件

notepad $PROFILE

在其中添加下面的内容

Import-Module posh-git 
Import-Module oh-my-posh 
Set-Theme Paradox

其中最后一句 Set-Theme <主题名> 就是配置主题的命令。
有不同的主题,只要选择自己喜欢的主题就行了

要恢复PowerShell原状就卸载掉oh-my-posh

安装windows terminal

在微软商店里搜windows terminal,安装

配置windows terminal

在windows terminal设置的时候会打开JSON文件,在里面配置颜色。

参考:WindowsTerminal添加、使用主题_无声告白-CSDN博客

主题色选择:atomcorp/themes: Themes for Windows Terminal

在这儿复制颜色

用在"schemes"数组里面
技术图片

然后在“list”里面的“colorScheme”里面指定名字就行了
技术图片

效果还算可以,但是我不太喜欢这个颜色主题,所以我可能还需要找找
技术图片

windows terminal美化

标签:hub   jin   图片   current   注意   port   force   tail   出现   

原文地址:https://www.cnblogs.com/redfield/p/13125009.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!