1
0
bot/ai.zsh

31 lines
363 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
2024-02-13 09:45:28 +00:00
d=${0:a:h}/test
2023-10-20 14:31:16 +00:00
source $d/env
source $d/refresh.zsh
source $d/token.zsh
source $d/reply.zsh
source $d/notify.zsh
case $1 in
refresh|r)
refresh
;;
token|t)
token
;;
reply|rep)
reply
;;
notify|n)
notify
;;
esac