Add work-specific aliases and functions

This commit is contained in:
Viktor Barzin 2026-02-13 16:29:55 +00:00
parent 71947191ae
commit dc73ebb535

View file

@ -0,0 +1,17 @@
# Work - Meta-specific aliases and functions
# Auto-loaded by oh-my-zsh from $ZSH_CUSTOM/
# ============================================================================
# On-demand VMs
# ============================================================================
# Connect to first available ondemand machine via et
svmo() {
et $(ondemand list -q | head -n 2 | tail -n 1 | awk '{print $1}')
}
# ============================================================================
# Build & deploy
# ============================================================================
alias arcb="arc build"
alias arcc="conf canary start"
alias arccc='conf canary cancel --hostname $HOSTNAME'