1
0
bot/test/ai.zsh

44 lines
483 B
Bash
Raw Normal View History

2023-10-20 14:31:16 +00:00
#!/bin/zsh
# https://www.docs.bsky.app/docs/get-started
case $OSTYPE in
darwin*)
alias date="/opt/homebrew/bin/gdate"
;;
esac
d=${0:a:h}
source $d/env.zsh
source $d/refresh.zsh
source $d/token.zsh
source $d/reply.zsh
source $d/notify.zsh
source $d/notify_cid.zsh
source $d/cron.zsh
2024-08-17 16:28:04 +00:00
source $d/feed.zsh
2023-10-20 14:31:16 +00:00
case $1 in
refresh|r)
refresh
;;
token|t)
token
;;
reply|rep)
reply
;;
notify|n)
notify
;;
cron|c)
cron
;;
cid)
cid
;;
2024-08-17 16:28:04 +00:00
feed)
feed
;;
2023-10-20 14:31:16 +00:00
esac