Skip to content

Instantly share code, notes, and snippets.

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