Source code for slidcord.config

[docs]DISCORD_VERBOSE = False
[docs]DISCORD_VERBOSE__DOC = ( "Let the discord lib at the same loglevel as others loggers. " "By default, it's set it to WARNING because it's *really* verbose." )
[docs]MUC_BACK_FILL = 50
[docs]MUC_BACK_FILL__DOC = ( "The number of messages to fetch in text channels on slidge startup." )
[docs]AUTO_FETCH_FRIENDS_BIO = False
[docs]AUTO_FETCH_FRIENDS_BIO__DOC = ( "If set to true, slidcord will automatically fetch the 'bio' of your discord " "friends on startup, to push VCards4 to you. Disabled by default because of " "the rate limiting it triggers for some users." )
[docs]CONVERT_STICKERS = True
[docs]CONVERT_STICKERS__DOC = ( "Convert incoming animated stickers to webm videos. " "Requires lottie_to_webm.sh in $PATH, cf <https://github.com/ed-asriyan/lottie-converter>, " "along with FFMPEG." )
[docs]CONVERT_STICKERS_EXECUTABLE = "lottie_to_webm.sh"
[docs]CONVERT_STICKERS_EXECUTABLE__DOC = "Path to the TGS/webm converter executable."
[docs]CONVERT_STICKERS_SIZE = 128
[docs]CONVERT_STICKERS_SIZE__DOC = "Width and height video stickers."
[docs]CONVERT_STICKERS_FPS = 60
[docs]CONVERT_STICKERS_FPS__DOC = "Framerate of the video stickers"