mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-29 04:15:06 +03:00
12 lines
208 B
Bash
12 lines
208 B
Bash
|
if [[ -z "$ZELLIJ" ]]; then
|
||
|
if [[ "$ZELLIJ_AUTO_ATTACH" == "true" ]]; then
|
||
|
zellij attach -c
|
||
|
else
|
||
|
zellij
|
||
|
fi
|
||
|
|
||
|
if [[ "$ZELLIJ_AUTO_EXIT" == "true" ]]; then
|
||
|
exit
|
||
|
fi
|
||
|
fi
|