Last active
February 15, 2024 09:01
-
-
Save K1ethoang/e78c855f34ed90ebe6ba00b1d4a3f201 to your computer and use it in GitHub Desktop.
Youtube: Các câu lệnh trong video "Tuỳ chỉnh giao diện Terminal với Oh My Posh"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
📂 Cấu trúc thư mục: | |
C: | |
└── Users | |
└── {Username_Folder} | |
└── .config | |
└── powershell | |
└── user_profile.ps1 | |
🏷️ Tên 2 file: | |
🔸user_profile.ps1 | |
🔸Microsoft.PowerShell_profile.ps1 | |
📜 Các câu lệnh: | |
🔸Cài đặt Oh My Posh thông qua Scoop: scoop install oh-my-posh | |
🔸Lấy đường dẫn PowerShell: $PROFILE.CurrentUserCurrentHost | |
🔸Lệnh đặt vào file Microsoft.PowerShell_profile.ps1: . $env:USERPROFILE\.config\powershell\user_profile.ps1 (Lưu ý: có dấu "." đằng trước) | |
🔸Lệnh đổi theme Terminal: oh-my-posh init pwsh --config 'C:\Users\{username_folder}\scoop\apps\oh-my-posh\current\themes\{theme_name}.omp.json' | Invoke-Expression (Lưu ý đổi {username_folder} và {theme_name} cho phù hợp và đừng quên đặt lệnh này vào file user_profile.ps1 nha) | |
🔸Lệnh cài đặt icon trong Terminal: Install-Module -Name Terminal-Icons -Scope CurrentUser -Force | |
🔸Lệnh đặt vào file user_profile.ps1 cho icon: Import-Module Terminal-Icons |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment