Skip to content

Instantly share code, notes, and snippets.

@codebykyle
codebykyle / connect.ps1
Last active July 15, 2024 01:29
Windows Terminal Split Pane Powershell Script - v2
using namespace System.Collections.Generic
# Encapsulate an arbitrary command
class PaneCommand {
[string]$Command
PaneCommand() {
$this.Command = "";
}