-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to log in when sourcing the palette shellscript #48
Comments
upon further inspection it seems it was lines 80-82 in the shellscript that were causing the issue. if [ "$TERM" = "linux" ] || [ "$TERM" = "vt100" ] || [ "$TERM" = "vt220" ]; then
exit 1
fi |
Hmm, that's strange. Could you please specify your OS//WM? |
I'm using 32-bit Arch linux with 3.18.6 kernel. The problem is independent of the WM since it occurs outside of X. (and i'm not starting X automatically at login or anything). I think what's happening is that at login, since my $TERM is "linux", the |
As mentioned in the wiki, I added the line
source "$HOME/.vim/bundle/gruvbox/gruvbox_256palette.sh"
to my~/.zshrc
and later noticed that this prevented me from logging in to this user (the .zshrc file gets sourced at login).I'm not sure what is causing this problem -- the file exists and has the needed permissions. However I made a modification to the line so it wouldn't get sourced at login, and I'm able to log in again.
[[ -o login ]] || source "$HOME/.vim/bundle/gruvbox/gruvbox_256palette.sh"
The text was updated successfully, but these errors were encountered: