Created
February 18, 2020 15:25
-
-
Save jerkovicl/b5cc77082da58ee6b3893486e534ab1f to your computer and use it in GitHub Desktop.
script to download iTerm2 Color Scheme for Windows Terminal
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
# List of themes here: https://github.com/mbadolato/iTerm2-Color-Schemes/tree/master/windowsterminal | |
$Theme = "ayu" | |
$path = "$Env:LocalAppData/packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState/profiles.json" | |
$Conf = gc $path | ConvertFrom-Json | |
$Conf.schemes += irm https://raw.githubusercontent.com/mbadolato/iTerm2-Color-Schemes/master/windowsterminal/$Theme.json | |
$Conf | ConvertTo-json -Depth 10 | Set-Content $path |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment