是時候扔掉cmder, 換上Windows Terminal

蟲師發表於2020-05-30

作為一個Windows的長期使用者,一直沒有給款好用的終端,知道遇到了 cmder,它拯救一個習慣用Windows敲shell命令的人。

不用跟我安利macOS真香!公司上班一直用macOS,一方面確實更加習慣windows下面學習, 另一方面是上課需要Windows QQ共享桌面。

windows Terminal 1.0釋出,那麼是時候和 cmder 說再見了。

不過需要做一些配置和美化。

美化主題

  • 安裝posh-git和oh-my-posh
> Install-Module posh-git -Scope CurrentUser
> Install-Module oh-my-posh -Scope CurrentUser
  • 啟用預設設定
> Set-Prompt
  • 設定主題:
> Set-Theme Sorin

oh-my-posh 支援十幾種主題:

> Set-Theme

位於命令管道位置 1 的 cmdlet Set-Theme
請為以下引數提供值:
name: ?

警告: Theme ? not found. Available themes are:

Name                  Type     Location
----                  ----     --------
Agnoster              Defaults C:\Users\fnngj\Documents\WindowsPowerShell\Modules\oh-my-posh\2.0.412\Themes\Agnoster...
AgnosterPlus          Defaults C:\Users\fnngj\Documents\WindowsPowerShell\Modules\oh-my-posh\2.0.412\Themes\Agnoster...
Avit                  Defaults C:\Users\fnngj\Documents\WindowsPowerShell\Modules\oh-my-posh\2.0.412\Themes\Avit.psm1
Darkblood             Defaults C:\Users\fnngj\Documents\WindowsPowerShell\Modules\oh-my-posh\2.0.412\Themes\Darkbloo...
Fish                  Defaults C:\Users\fnngj\Documents\WindowsPowerShell\Modules\oh-my-posh\2.0.412\Themes\Fish.psm1
Honukai               Defaults C:\Users\fnngj\Documents\WindowsPowerShell\Modules\oh-my-posh\2.0.412\Themes\Honukai....
Paradox               Defaults C:\Users\fnngj\Documents\WindowsPowerShell\Modules\oh-my-posh\2.0.412\Themes\Paradox....
Powerlevel10k-Classic Defaults C:\Users\fnngj\Documents\WindowsPowerShell\Modules\oh-my-posh\2.0.412\Themes\Powerlev...
Powerlevel10k-Lean    Defaults C:\Users\fnngj\Documents\WindowsPowerShell\Modules\oh-my-posh\2.0.412\Themes\Powerlev...
PowerLine             Defaults C:\Users\fnngj\Documents\WindowsPowerShell\Modules\oh-my-posh\2.0.412\Themes\PowerLin...
pure                  Defaults C:\Users\fnngj\Documents\WindowsPowerShell\Modules\oh-my-posh\2.0.412\Themes\pure.psm1
robbyrussell          Defaults C:\Users\fnngj\Documents\WindowsPowerShell\Modules\oh-my-posh\2.0.412\Themes\robbyrus...
Sorin                 Defaults C:\Users\fnngj\Documents\WindowsPowerShell\Modules\oh-my-posh\2.0.412\Themes\Sorin.psm1
tehrob                Defaults C:\Users\fnngj\Documents\WindowsPowerShell\Modules\oh-my-posh\2.0.412\Themes\tehrob.psm1
  • 使用記事本開啟PS配置檔案(如無則建立該檔案)
> if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force } notepad $PROFILE

隨後,在開啟的記事本視窗裡,在文末加入下面內容,以讓Powershell在啟動之時應用主題,然後儲存。(僅對當前使用者生效)

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

設定字型

如果你設定的主題出現亂碼,可以安裝SarasaGothic字型庫。

> scoop bucket add nerd-fonts
> scoop install SarasaGothic

或者直接到github下載:
https://github.com/be5invis/Sarasa-Gothic/releases

然後,將字型庫解壓 複製到 C:\Windows\Font\ 目錄。

Windows Terminal 設定

點選 Windows Terminal 向下箭頭,選擇設定,將會找開啟一個配置檔案。

// This file was initially generated by Windows Terminal 1.0.1401.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
    "$schema": "https://aka.ms/terminal-profiles-schema",
    "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
    // You can add more global application settings here.
    // To learn more about global settings, visit https://aka.ms/terminal-global-settings
    // If enabled, selections are automatically copied to your clipboard.
    "copyOnSelect": false,
    // If enabled, formatted data is also copied to your clipboard
    "copyFormatting": false,
    // A profile specifies a command to execute paired with information about how it should look and feel.
    // Each one of them will appear in the 'New Tab' dropdown,
    //   and can be invoked from the commandline with `wt.exe -p xxx`
    // To learn more about profiles, visit https://aka.ms/terminal-profile-settings
    "profiles": {
        "defaults": {
            // Put settings here that you want to apply to all profiles.
            "fontFace": "Sarasa Term Slab SC",  // 選擇字型,前面安裝的
            "backgroundImage" : "C:/Users/fnngj/Pictures/bg.jpg",  // 設定背景圖片
            "backgroundImageOpacity" : 0.9, // 背景圖片透明度
            "fontSize" : 16,  // 字型大小
            "foreground": "#76EE00"  //字型顏色
        },
       //...

當然,你也可以在繼續安裝vim 工具,來更加符合你的 shell習慣。

相關文章