Skip to content

Instantly share code, notes, and snippets.

View veasnama's full-sized avatar
💻
Focusing

Ma veasna veasnama

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