<aside> 🍎
</aside>
How to create ascii text banners in terminal using figlet - Tips & Tricks
How To Make Your Boring Mac Terminal So Much Better
To customize your greeting message in Windows Terminal, you can follow these steps.
since there are no source of videos are made for windows terminal about the banner.
Launch Windows Terminal.
Type the following command and press Enter to open the profile script in your default editor:
notepad $PROFILE
If the file doesn't exist, PowShell will prompt you to create it.
In the profile script file, add a command to display a custom greeting. For example:
Write-Host "Welcome to your customized Windows Terminal!" -ForegroundColor Cyan
You can also include ASCII art or dynamic content like the date and time (choose anyone or create your own through fidlet fonts generator):
$asciiArt = @"
__ ______ _ _ _
\\ \\ / / __ \\| \\ | | | |
\\ \\ /\\ / / | | | \\| | | |
\\ \\/ \\/ /| | | | . ` | | |
\\ /\\ / | |__| | |\\ | |_|
\\/ \\/ \\____/|_| \\_(_)
"@
Write-Host $asciiArt -ForegroundColor Yellow
Write-Host "Today's Date: $(Get-Date -Format "dddd, MMMM dd, yyyy")" -ForegroundColor Green
$asciiArt = @"
_ _ _ _
| | (_) | | (_)
| | _ __| | _ ___ _ __ ___
| | | |/ _` | | |/ _ \\| '_ \\/ __|
| |____ | | (_| |_ | | (_) | | | \\__ \\
|______||_|\\__,_( ) |_|\\___/|_| |_|___/
|/
"@
Write-Host $asciiArt -ForegroundColor Cyan
Write-Host "Welcome, JoshTheBoss! Have an epic terminal session!" -ForegroundColor Green
To see the changes immediately, reload the profile by running:
. $PROFILE