9 lines
178 B
Bash
9 lines
178 B
Bash
#!/usr/bin/env zsh
|
|
# Eryn Wells <eryn@erynwells.me>
|
|
|
|
if ssh-add --apple-load-keychain; then
|
|
echo
|
|
fi
|
|
|
|
autoload -Uz init_profile_darwin_say_hello
|
|
init_profile_darwin_say_hello
|