Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/StartAutomating/TerminalVelocity
Fine tuning Windows Terminal
https://github.com/StartAutomating/TerminalVelocity
colorscheme customization powershell terminal terminal-colors windowsterminal
Last synced: about 1 month ago
JSON representation
Fine tuning Windows Terminal
- Host: GitHub
- URL: https://github.com/StartAutomating/TerminalVelocity
- Owner: StartAutomating
- License: mit
- Created: 2020-05-14T18:04:08.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-06-29T02:12:23.000Z (over 1 year ago)
- Last Synced: 2024-11-24T07:32:26.548Z (about 2 months ago)
- Topics: colorscheme, customization, powershell, terminal, terminal-colors, windowsterminal
- Language: PowerShell
- Homepage: https://terminalvelocity.start-automating.com/
- Size: 333 KB
- Stars: 18
- Watchers: 5
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - StartAutomating/TerminalVelocity - Fine tuning Windows Terminal (PowerShell)
README
#### Installing
TerminalVelocity is on the PowerShell Gallery. To Install TerminalVelocity, run:
~~~PowerShell
Install-Module TerminalVelocity -Scope CurrentUser
~~~Once you've installed TerminalVelocity, here are a few handy things you can do with TerminalVelocity:
#### Adding a new Profile
~~~PowerShell
Add-WTProfile -Name kali-linux-pwsh -CommandLine 'wsl -d kali-linux -e pwsh'
~~~#### Adding a new color scheme
~~~PowerShell
Add-WTColorScheme -Name AdventureTime
~~~#### Changing the color scheme
~~~PowerShell
Set-WTColorScheme -Name AdventureTime -Passthru # The profile is automatically detected.
~~~#### Starting a new Terminal
~~~PowerShell
Start-WT -ProfileName PowerShell -CommandLine 'powershell -nologo -noexit -command $psVersionTable'
~~~~~~PowerShell
Start-WT -Elevated # Start Windows Terminal Elevated
~~~#### Flashing an image in Terminal
~~~PowerShell
# The profile is automatically detected
# The .gif will play once and then dissapear.
Show-WT -ImagePath $home\Pictures\Gif\Whoa.gif
~~~#### Preview color schemes
~~~PowerShell
Get-WTColorScheme AdventureTime # This is formatted by PowerShell to show a preview.
~~~
![Previwing Scheme 'AdventureTime'](Assets/Get-WTColorScheme.png)