Skip to content

Instantly share code, notes, and snippets.

@kalaschnik
Last active May 1, 2020 07:23
Show Gist options
  • Save kalaschnik/0759ef8717c18bc5131bda9a34a64e8f to your computer and use it in GitHub Desktop.
Save kalaschnik/0759ef8717c18bc5131bda9a34a64e8f to your computer and use it in GitHub Desktop.
Windows Terminal Config
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"profiles": {
"defaults": {
// Put settings here that you want to apply to all profiles
"colorScheme": "Campbell",
"fontFace": "Fira Code",
"backgroundImageOpacity": 0.2,
"useAcrylic": true,
"acrylicOpacity": 0.75
},
"list": [
{
// Make changes here to the cmd.exe profile
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false,
"backgroundImage": "%OneDrive%/.config/.assets/cmd.png"
},
{
"guid": "{00000000-0000-0000-ba54-000000000002}",
"name": "Git Bash",
"commandline": "\"%PROGRAMFILES%/git/usr/bin/bash.exe\" -i -l",
"icon": "C:/Program Files/Git/mingw64/share/git/git-for-windows.ico",
"backgroundImage": "%OneDrive%/.config/.assets/git.jpg",
"backgroundImageOpacity": 0.1,
"startingDirectory": "%USERPROFILE%"
},
{
"guid": "{7f586916-8357-53d4-bb2b-ca96f639898a}",
"hidden": false,
"name": "Pengwin",
"source": "Windows.Terminal.Wsl",
"startingDirectory": "//wsl$/WLinux/home/steven/",
"backgroundImage": "%OneDrive%/.config/.assets/debian.jpg"
},
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false,
"backgroundImage": "%OneDrive%/.config/.assets/powershell.png"
},
{
// Make changes here to the cmd.exe profile
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6110}",
"name": "Anaconda",
"commandline": "cmd.exe /K C:/Users/steven/anaconda3/Scripts/activate.bat",
"startingDirectory": "%OneDrive%/WorkSpaces",
"hidden": false,
"icon": "%OneDrive%/.config/.assets/anaconda.ico",
"backgroundImage": "%OneDrive%/.config/.assets/anaconda.png",
"backgroundImageOpacity": 0.07
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": true,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
},
{
"guid": "{5c12a7d7-4629-5a27-bbc5-5d49f6744851}",
"hidden": false,
"name": "Pengwin",
"source": "Windows.Terminal.Wsl"
}
]
},
// Add custom color schemes to this array
"schemes": [],
// Add any keybinding overrides to this array.
// To unbind a default keybinding, set the command to "unbound"
"keybindings": []
}
@kalaschnik
Copy link
Author

kalaschnik commented Feb 22, 2020

Backgrounds

cmd

cmd

Debian

debian

Powershell

powershell

Anaconda

anaconda

Git

git

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment