Last active
May 18, 2019 21:18
-
-
Save darrenjrobinson/0a4bc1c41e9aae67bdb3be6ff9ad057c to your computer and use it in GitHub Desktop.
Windows Terminal Preview Shell Configuration. Associate Blogpost https://blog.darrenjrobinson.com/windows-terminal-with-tabs-on-steroids/
This file contains hidden or 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
{ | |
"defaultProfile": "{5232b930-2f97-47b0-8042-75c9932cbc5e}", | |
"initialRows": 30, | |
"initialCols": 120, | |
"alwaysShowTabs": true, | |
"showTerminalTitleInTitlebar": false, | |
"experimental_showTabsInTitlebar": false, | |
"profiles": [ | |
{ | |
"startingDirectory": "%USERPROFILE%", | |
"guid": "{5232b930-2f97-47b0-8042-75c9932cbc5e}", | |
"name": "PowerShell", | |
"background": "#012456", | |
"colorscheme": "Campbell", | |
"historySize": 9001, | |
"snapOnInput": true, | |
"cursorColor": "#FFFFFF", | |
"cursorShape": "bar", | |
"commandline": "C:\\Program Files\\PowerShell\\6\\pwsh.exe", | |
"fontFace": "Courier New", | |
"fontSize": 12, | |
"acrylicOpacity": 0.5, | |
"useAcrylic": false, | |
"closeOnExit": true, | |
"padding": "0, 0, 0, 0", | |
"icon": "ms-appdata:///roaming/cmd-32.png" | |
}, | |
{ | |
"startingDirectory": "%USERPROFILE%", | |
"guid": "{05dd8a99-fcaa-46a6-b7e1-3f3ce8f7986a}", | |
"name": "cmd", | |
"colorscheme": "Campbell", | |
"historySize": 9001, | |
"snapOnInput": true, | |
"cursorColor": "#FFFFFF", | |
"cursorShape": "bar", | |
"commandline": "cmd.exe", | |
"fontFace": "Consolas", | |
"fontSize": 12, | |
"acrylicOpacity": 0.75, | |
"useAcrylic": true, | |
"closeOnExit": true, | |
"padding": "0, 0, 0, 0", | |
"icon": "ms-appdata:///roaming/MSDos-32.png" | |
}, | |
{ | |
"guid": "{09dc5eef-6840-4050-ae69-21edeadbeef3}", | |
"name": "PowerShell Desktop", | |
"colorscheme": "Campbell", | |
"historySize": 9001, | |
"snapOnInput": true, | |
"cursorColor": "#FFFFFF", | |
"cursorShape": "bar", | |
"commandline": "powershell", | |
"fontFace": "Consolas", | |
"fontSize": 12, | |
"acrylicOpacity": 0.75, | |
"useAcrylic": true, | |
"closeOnExit": false, | |
"padding": "0, 0, 0, 0", | |
"icon": "ms-appdata:///roaming/PShell-32.png" | |
}, | |
{ | |
"guid": "{09dc5eef-6840-4050-ae69-21edeadbeef2}", | |
"name": "openSuse", | |
"colorscheme": "Campbell", | |
"historySize": 9001, | |
"snapOnInput": true, | |
"cursorColor": "#FFFFFF", | |
"cursorShape": "bar", | |
"commandline": "wsl.exe -d openSuse-42", | |
"fontFace": "Consolas", | |
"fontSize": 12, | |
"acrylicOpacity": 0.75, | |
"useAcrylic": true, | |
"closeOnExit": false, | |
"padding": "0, 0, 0, 0", | |
"icon": "ms-appdata:///roaming/Suse-32.png" | |
}, | |
{ | |
"guid": "{09dc5eef-6840-4050-ae69-21e5deadbeef}", | |
"name": "Ubuntu", | |
"colorscheme": "Solarized Dark", | |
"historySize": 9001, | |
"snapOnInput": true, | |
"cursorColor": "#FFFFFF", | |
"cursorShape": "bar", | |
"commandline": "wsl.exe -d ubuntu", | |
"fontFace": "Consolas", | |
"fontSize": 12, | |
"acrylicOpacity": 0.75, | |
"useAcrylic": true, | |
"closeOnExit": false, | |
"padding": "0, 0, 0, 0", | |
"icon": "ms-appdata:///roaming/Ubuntu-32.png" | |
} | |
], | |
"schemes": [ | |
{ | |
"name": "Campbell", | |
"foreground": "#F2F2F2", | |
"background": "#0C0C0C", | |
"colors": [ "#0C0C0C", "#C50F1F", "#13A10E", "#C19C00", "#0037DA", "#881798", "#3A96DD", "#CCCCCC", "#767676", "#E74856", "#16C60C", "#F9F1A5", "#3B78FF", "#B4009E", "#61D6D6", "#F2F2F2" ] | |
}, | |
{ | |
"name": "Solarized Dark", | |
"foreground": "#FDF6E3", | |
"background": "#073642", | |
"colors": [ "#073642", "#D30102", "#859900", "#B58900", "#268BD2", "#D33682", "#2AA198", "#EEE8D5", "#002B36", "#CB4B16", "#586E75", "#657B83", "#839496", "#6C71C4", "#93A1A1", "#FDF6E3" ] | |
}, | |
{ | |
"name": "Solarized Light", | |
"foreground": "#073642", | |
"background": "#FDF6E3", | |
"colors": [ "#073642", "#D30102", "#859900", "#B58900", "#268BD2", "#D33682", "#2AA198", "#EEE8D5", "#002B36", "#CB4B16", "#586E75", "#657B83", "#839496", "#6C71C4", "#93A1A1", "#FDF6E3" ] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment