-
-
Save redraw/5d29c6a2dbe1bdeda8dc076266f03f61 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# brew install xbar jq | |
# pip install astro-cli | |
PATH=$PATH:/usr/local/bin | |
ASTRO=$(pyenv which astro) | |
$ASTRO --date "a week ago" -f json moon phases | jq -r "first | .emoji" | |
echo "---" | |
echo "phases | size=10" | |
$ASTRO --date "a week ago" moon phases | tail +3 | |
echo "---" | |
echo "eclipses | size=10" | |
$ASTRO --date "a week ago" moon eclipses | tail +3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment