diff --git a/chezmoi.roots/_home.macos/private_dot_config/zellij/layouts/cs-dbg.kdl b/chezmoi.roots/_home.macos/private_dot_config/zellij/layouts/cs-dbg.kdl new file mode 100644 index 0000000..82c481a --- /dev/null +++ b/chezmoi.roots/_home.macos/private_dot_config/zellij/layouts/cs-dbg.kdl @@ -0,0 +1,16 @@ +layout { + cwd "/Users/gal.szkolnik" + tab name="CS-DBG" hide_floating_panes=true { + pane size=1 borderless=true { + plugin location="zellij:tab-bar" + } + pane command="zsh" cwd="/Users/gal.szkolnik" size="55%" { + args "-ic" "ssh -o HostKeyAlgorithms=+ssh-rsa -o PubkeyAcceptedAlgorithms=+ssh-rsa cs-dbg" + start_suspended true + } + pane size=1 borderless=true { + plugin location="zellij:status-bar" + } + } +} + diff --git a/chezmoi.roots/_home.macos/private_dot_config/zellij/layouts/teleport.kdl b/chezmoi.roots/_home.macos/private_dot_config/zellij/layouts/teleport.kdl new file mode 100644 index 0000000..b4800c3 --- /dev/null +++ b/chezmoi.roots/_home.macos/private_dot_config/zellij/layouts/teleport.kdl @@ -0,0 +1,16 @@ +layout { + cwd "/Users/gal.szkolnik" + tab name="Teleport" hide_floating_panes=true { + pane size=1 borderless=true { + plugin location="zellij:tab-bar" + } + pane command="zsh" cwd="/Users/gal.szkolnik" size="55%" { + args "-ic" "vast-teleport launch --from-zellij" + // start_suspended true + } + pane size=1 borderless=true { + plugin location="zellij:status-bar" + } + } +} + diff --git a/chezmoi.roots/_home.macos/private_dot_local/bin/executable_vast-lab b/chezmoi.roots/_home.macos/private_dot_local/bin/executable_vast-lab index 5c81d2c..ed8da78 100644 --- a/chezmoi.roots/_home.macos/private_dot_local/bin/executable_vast-lab +++ b/chezmoi.roots/_home.macos/private_dot_local/bin/executable_vast-lab @@ -192,6 +192,7 @@ do_prepmac() { } do_get_s3-releases() { + # Get the list of releases, order in reverse, where non-sp/hf are listed first. aws s3 ls --human-readable s3://vastdata-releases/release_bundles/service-packs/ \ | sed -E 's|^[[:space:]]+[^[:space:]]+[[:space:]](.+)/$|999\1|; s/^999release/111release/; s/([[:digit:]])$/\1.zzz/' \ | sort --field-separator=- -k2,2Vr -k3,3Vr -k4,4Vr -k5,5Vr \