Distort your Bluesky avatar based on how much you're tired, according to your WHOOP band
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add .env.example

geesawra 8537f21c 8e5dc54f

+20
+19
.env.example
··· 1 + # Bluesky credentials 2 + BSKY_USER= 3 + BSKY_PASSWORD= 4 + 5 + # WHOOP API credentials 6 + API_KEY= 7 + API_SECRET= 8 + 9 + # Path to the source avatar image 10 + IMAGE_PATH=/data/avatar.jpg 11 + 12 + # Directory for storing WHOOP OAuth tokens 13 + TOKEN_DIR=/data/tokens 14 + 15 + # Set to any value to run in daemon mode 16 + DAEMONIZE=1 17 + 18 + # How often to update the avatar (Go duration format) 19 + UPDATE_INTERVAL=1h
+1
.gitignore
··· 15 15 # Environment / secrets 16 16 .env 17 17 .env.* 18 + !.env.example