this repo has no description
at main 1.3 kB view raw
1bluesky: 2 # Your Bluesky handle (e.g., username.bsky.social) 3 handle: "yourhandle.bsky.social" 4 5 # App password from Bluesky Settings > App Passwords 6 # IMPORTANT: You can also set this via the BLUESKY_APP_PASSWORD environment variable 7 # Never commit your actual app password to version control! 8 app_password: "xxxx-xxxx-xxxx-xxxx" 9 10rotation: 11 # Number of degrees to rotate the profile picture per notification 12 # Positive values rotate clockwise, negative values rotate counter-clockwise 13 degrees: 2.0 14 15polling: 16 # How often to check for new notifications 17 # Valid time units: s (seconds), m (minutes), h (hours) 18 # Examples: "30s", "1m", "5m" 19 interval: "30s" 20 21notifications: 22 # Which notification types should trigger a profile picture rotation 23 types: 24 like: true # Someone liked your post 25 repost: true # Someone reposted your post 26 reply: true # Someone replied to your post 27 follow: true # Someone followed you 28 mention: true # Someone mentioned you 29 quote: true # Someone quoted your post 30 31state: 32 # Storage backend: "sqlite" or "json" 33 storage: "sqlite" 34 35 # Path to state file (SQLite database or JSON file) 36 # This file tracks which notifications have been processed 37 path: "/data/state.db"