2023-12-10 15:31:39 -05:00
|
|
|
# Check git status of nix configs
|
|
|
|
(
|
|
|
|
cd ~/.nix || exit 1
|
2023-12-13 21:38:30 -05:00
|
|
|
git fetch --all --quiet
|
2023-12-10 15:42:32 -05:00
|
|
|
GIT=$(git -c color.status=always status |
|
2023-12-10 15:45:56 -05:00
|
|
|
grep -v -e "On branch" \
|
|
|
|
-e "up to date" \
|
2023-12-10 15:42:32 -05:00
|
|
|
-e 'use "git' \
|
2023-12-10 16:14:07 -05:00
|
|
|
-e "nothing to commit")
|
2023-12-10 15:42:32 -05:00
|
|
|
|
2023-12-10 16:14:07 -05:00
|
|
|
CHECK=$(echo "$GIT" | sed '/^$/d')
|
|
|
|
|
|
|
|
if [ "$CHECK" != "" ]; then
|
2023-12-10 15:42:32 -05:00
|
|
|
echo "$GIT"
|
|
|
|
echo
|
|
|
|
fi
|
2023-12-10 15:31:39 -05:00
|
|
|
)
|
|
|
|
|
2023-10-06 00:14:23 -04:00
|
|
|
# Pokemon Sprite
|
|
|
|
pokemon-colorscripts -r 1-5
|