5 lines
85 B
Bash
5 lines
85 B
Bash
if [[ $TTY == *tty* ]]; then
|
|
source .zshrc.tty
|
|
else
|
|
source .zshrc.graphic
|
|
fi
|