Windows Terminal 2020

The Windows Terminal is a modern, fast, efficient, powerful, and productive terminal application for users of command-line tools and shells like Command Prompt, PowerShell, and WSL.

Windows Terminal 2020

Code for adding SSH Hosts in the Windows Terminal

Youtube Tutorial for installing Windows Terminal on Windows 10

https://youtu.be/J6UldC85TU0 (Part 1/3)

https://youtu.be/ZoFxV-AlXx0 (Part 2/3)

   // Code for adding SSH Hosts in the Windows Terminal
     "profiles":
    {
        "defaults":
        {
            // Put settings here that you want to apply to all profiles.
        },
        "list":
        [
			{
                // Make changes here to the SSH profile.			
				"name": "Ubuntu",
				"tabTitle": "Ubuntu 20.04",
				"commandline": "ssh [email protected] -i ~/.ssh/id_rsa",
				"icon": "c:/icons/ubuntu-orange.png"
            },
            {
                // Make changes here to the SSH profile.			
				"name": "Ubuntu_2",
				"tabTitle": "Ubuntu 20.04",
				"commandline": "ssh [email protected] -i ~/.secure/id_rsa",
				"icon": "c:/icons/ubuntu.png"
            },
            {
                // Make changes here to the SSH profile.			
				"name": "Docker",
				"tabTitle": "Docker",
				"commandline": "ssh [email protected] -i ~/.ssh/id_rsa",
				"icon": "c:/icons/ubuntu-orange.png"
			},
			{
                // Make changes here to the SSH profile.			
				"name": "Kali Linux",
				"tabTitle": "Kali Linux",
				"commandline": "ssh [email protected] -i ~/.ssh/id_rsa",
				"icon": "c:/icons/kali.ico"
			},
        ]
    }

Last updated