From 59e0136aa84c24c2aa6fde5df0d4fb088149a809 Mon Sep 17 00:00:00 2001 From: James Brechtel Date: Wed, 19 Aug 2026 10:06:27 -0400 Subject: [PATCH] Adds wez script for wezterm domain connections --- bin/wez | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 bin/wez diff --git a/bin/wez b/bin/wez new file mode 100755 index 0000000..5ad02d6 --- /dev/null +++ b/bin/wez @@ -0,0 +1,9 @@ +#!/usr/bin/nu + +$env.SSH_AUTH_SOCK = "" +$env.SSH_ASKPASS = "/usr/bin/ksshaskpass" +$env.SSH_ASKPASS_REQUIRE = "force" + +def main [domain: string] { + wezterm connect $domain +} \ No newline at end of file