Created
September 1, 2015 03:29
-
-
Save genta/df25f59c2ba920c20910 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .zlogin for launch screen on iTerm2 startup | |
| if [[ -o interactive ]]; then | |
| if [[ $TERM =~ ^screen[.] ]]; then | |
| : | |
| # fix 'screen.xterm-256color' => 'screen' | |
| export TERM="screen" | |
| else | |
| exec screen -S iterm -U | |
| fi | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment