Last active
February 1, 2022 15:55
-
-
Save abacigalup-eb/b8a1121309c965d2c8c22f569c2df2a4 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