Skip to content

Instantly share code, notes, and snippets.

@ogra
Created January 13, 2025 01:43
Show Gist options
  • Save ogra/a3faa222a02364218d9ee5e84e248bac to your computer and use it in GitHub Desktop.
Save ogra/a3faa222a02364218d9ee5e84e248bac to your computer and use it in GitHub Desktop.
Autostart Zellij with terminals other than Warp.
if [[ "$TERM_PROGRAM" != "WarpTerminal" ]]; then
if [[ -z "$ZELLIJ" ]]; then
if [[ "$ZELLIJ_AUTO_START" != "false" ]]; then
if command -v zellij >/dev/null 2>&1; then
eval "$(zellij setup --generate-auto-start zsh)"
fi
fi
fi
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment