Last active
February 16, 2021 22:38
-
-
Save r00t-3xp10it/1c75b3c20a8ce1d55399e412f7e7f793 to your computer and use it in GitHub Desktop.
New Windows Terminal - my conf file
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
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
// To Creat new GUID's visit: http://new-guid.com/ | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"profiles": | |
{ | |
"defaults": | |
{ | |
// Put settings here that you want to apply to all profiles | |
// "acrylicOpacity": 0.4, // Transparent value | |
// "useAcrylic": true, // UseTransparence ?? | |
"fontSize": 14, // Default FontSize | |
"Columns": 250, | |
"Rows": 250 | |
}, | |
"list": | |
[ | |
{ | |
// Make changes here to the powershell.exe profile | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "PowerShell IDE", | |
"commandline": "powershell.exe", | |
// "colorScheme" : "mytheme", | |
// "colorScheme" : "One Half Ligth", | |
"startingDirectory" : "%USERPROFILE%", | |
"hidden": false | |
}, | |
{ | |
// Make changes here to the cmd.exe profile | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "cmd IDE", | |
"commandline": "cmd.exe", | |
"colorScheme" : "mytheme", | |
// "colorScheme" : "One Half Dark", | |
"fontFace": "Cascadia Code", | |
"startingDirectory" : "%USERPROFILE%", | |
"hidden": false | |
}, | |
{ | |
// Make changes here to the Azure profile | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"name": "Azure Cloud IDE", | |
"source": "Windows.Terminal.Azure", | |
"hidden": false | |
}, | |
{ | |
// Make changes here to the python.exe profile | |
"guid": "{e586a7a2-2df4-45ad-823e-064630187b9a}", | |
"name": "Python IDE", | |
"commandline": "python.exe", | |
// "colorScheme" : "mytheme", | |
"colorScheme" : "Solarized Dark", | |
"startingDirectory" : "%USERPROFILE%\\Desktop", | |
"icon" : "C:\\Users\\pedro\\AppData\\Local\\Programs\\Python\\Python38-32\\Other-python-icon.png", | |
"backgroundImage" : "%USERPROFILE%\\Desktop\\meterpeter\\mimiRatz\\theme\\wall7.gif", | |
"backgroundImageStretchMode" : "uniformToFill", | |
"hidden": false | |
}, | |
{ | |
// Make changes here to the meterpeter profile | |
"guid": "{1972e6a7-daef-4cfc-8180-3eecfef9630d}", | |
"name": "meterpeter C2", | |
"fontFace": "Cascadia Code", | |
"backgroundImageStretchMode" : "uniformToFill", | |
"backgroundImage" : "%USERPROFILE%\\Desktop\\meterpeter\\mimiRatz\\theme\\wall1.gif", | |
"icon" : "%USERPROFILE%\\Desktop\\meterpeter\\mimiRatz\\theme\\Jack.png", | |
"commandline": "powershell.exe -ExecutionPolicy Bypass -NoLogo -NoExit -File \"%USERPROFILE%\\Desktop\\meterpeter\\meterpeter.ps1\"", | |
"startingDirectory" : "%USERPROFILE%\\Desktop\\meterpeter", | |
"hidden": false | |
} | |
] | |
}, | |
// Add custom color schemes to this array | |
"schemes": | |
[ | |
{ | |
"name" : "mytheme", // My Custom Theme Conf. | |
"foreground" : "#3d5c5c", // Dark Blue | |
// "foreground" : "#4d79ff", // ligth Blue | |
// "foreground" : "#B2C248", // Advocado Green | |
"background" : "#0C0C0C", // black Color | |
"red" : "#FF0000", | |
"blue" : "#0037DA", | |
"black" : "#0C0C0C", | |
"green" : "#13A10E", | |
"white" : "#CCCCCC", | |
"yellow" : "#C19C00" | |
} | |
], | |
// Add any keybinding overrides to this array. | |
// To unbind a default keybinding, set the command to "unbound" | |
"keybindings": | |
[ | |
{ "command": "find", "keys": ["ctrl+f"] }, | |
{ "command": "paste", "keys": ["ctrl+v"] }, | |
{ "command": "closePane", "keys": ["ctrl+p"] }, | |
{ "command": "closeWindow", "keys": ["ctrl+w"] }, | |
{ "command": "scrollUp", "keys": [ "ctrl+a" ] }, | |
{ "command": "scrollDown", "keys": [ "ctrl+z" ] }, | |
{ "command": "splitVertical", "keys": ["ctrl+j"] }, | |
{ "command": "splitHorizontal", "keys": ["ctrl+h"] }, | |
{ "command": "decreaseFontSize", "keys": [ "ctrl+d" ] }, | |
{ "command": "increaseFontSize", "keys": [ "ctrl+i" ] } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Screenshots