Windows terminal 好用的 Windows 命令列工具

北冥發表於2020-07-15

windows store 搜尋 window terminal 安裝,放到開始位置。
現在出來的還是初始的樣式,但是 terminal支援自定義樣式。
點選標籤欄後面的下拉按鈕,點選setting修改setting.json檔案

我的配置

{
    // Make changes here to the powershell.exe profile.
    "acrylicOpacity": 0.5, // 透明度
    "closeOnExit": true, // 關閉的時候退出命令終端
    "cursorColor": "#FFFFFF", // 游標顏色
    "fontSize": 12, // 終端字型大小
    "backgroundImage" : "C:/Users/【你的使用者名稱】/Pictures/terminal.jpg",//背景圖,自己換自己喜歡的
    "guid": "{0cae0dad-35be-5fc8-abdf-afcedeaa6301}",//隨便編的,格式正確就行
    "padding": "10, 10, 10, 10", // 邊距
    "startingDirectory": "./", // gitbash 啟動的位置(預設在C盤的使用者裡面的就是 ~ )
    "icon": "C:/Program Files/Git/git-icon.png",//git圖示
    "name": "gitBash",
    "commandline": "C:/Program Files/Git/bin/bash.exe",//git的命令列工具
    "hidden": false
}

git圖示
git顯示中文有亂碼,把

# 讓ls和dir命令顯示中文和顏色 
alias ls='ls --show-control-chars --color' 
alias dir='dir -N --color' 
# 設定為中文環境,使提示成為中文 
export LANG="zh_CN" 
# 輸出為中文編碼 
export OUTPUT_CHARSET="utf-8"

# 可以輸入中文 
set meta-flag on 
set output-meta on 
set convert-meta off

這部分程式碼放到C:\Program Files\Git\etc\bash.bashrc的最後面
預設的有cmdWindows PowerShell,想要軟體預設啟動哪個,就把哪個的guid放到defaultProfile

##右鍵啟動

blog.csdn.net/Jioho_chen/article/d...

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章