mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-01 03:20:29 +00:00
5 lines
154 B
Bash
5 lines
154 B
Bash
# Launch or attach zellij to existing session if logging in over ssh
|
|
if [[ -z "$ZELLIJ" && -n "$SSH_CONNECTION" ]]; then
|
|
exec zellij attach -c SSH
|
|
fi
|