Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Swihart committed Mar 8, 2016
1 parent b383053 commit eea6208
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/iterm_integration.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Installing:
curl -L https://iterm2.com/misc/`basename $SHELL`_startup.in >> ~/.iterm2_shell_integration.`basename $SHELL`


Because I can't get APS to work I must do the following:

in `~/.zshrc` or some `~/.secret/iterm.sh`:
```
echo -e "\033]50;SetProfile=PROFILE_NAME"
```

in `~/.zlogout`:
```
if [ "$SHLVL" = 1 ]; then
echo -e "\033]50;SetProfile=PROFILE_NAME\a"
clear
fi
```

0 comments on commit eea6208

Please sign in to comment.