nixos-configs/common/home/bash/config/bashrc
matt1432 a6c5dcea7c
All checks were successful
Discord / discord commits (push) Has been skipped
feat(bash): don't run bashrc is shell not interactive
2023-12-29 15:23:50 -05:00

27 lines
557 B
Bash

# Check git status of nix configs
fetchNix() {(
cd ~/.nix || exit 1
git fetch --all --quiet
GIT=$(git -c color.status=always status |
grep -v -e "On branch" \
-e "up to date" \
-e 'use "git' \
-e "nothing to commit")
CHECK=$(echo "$GIT" | sed '/^$/d')
if [ "$CHECK" != "" ]; then
echo "$GIT"
echo
fi
)}
# Check for internet
if wget -q --spider https://nixos.org; then
fetchNix
else
echo "Offline"
fi
# Pokemon Sprite
pokemon-colorscripts -r 1-5