pondorasti 0.1.21 → 0.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dotfiles/zsh/.zshrc +9 -0
- package/package.json +1 -1
package/dotfiles/zsh/.zshrc
CHANGED
|
@@ -76,6 +76,15 @@ source $ZSH/oh-my-zsh.sh
|
|
|
76
76
|
|
|
77
77
|
# User configuration
|
|
78
78
|
|
|
79
|
+
# Unlock Keychain for SSH sessions (fixes Claude Code auth over SSH)
|
|
80
|
+
# https://github.com/anthropics/claude-code/issues/1222
|
|
81
|
+
if [ -n "$SSH_CONNECTION" ]; then
|
|
82
|
+
keychain_status=$(security show-keychain-info ~/Library/Keychains/login.keychain-db 2>&1)
|
|
83
|
+
if echo "$keychain_status" | grep -q "User interaction is not allowed"; then
|
|
84
|
+
security unlock-keychain ~/Library/Keychains/login.keychain-db
|
|
85
|
+
fi
|
|
86
|
+
fi
|
|
87
|
+
|
|
79
88
|
# export MANPATH="/usr/local/man:$MANPATH"
|
|
80
89
|
|
|
81
90
|
# You may need to manually set your language environment
|