_/ _/
_/_/_/ _/_/_/ _/_/ _/_/_/_/
_/ _/ _/ _/ _/ _/ _/
_/ _/ _/ _/ _/ _/ _/
_/_/_/ _/_/_/ _/_/ _/_/
_/
_/
qbot is the bot used by the unofficial Arch Linux community on Discord. Originally its only function was to manage support channels, but it has evolved to do much more.
Modules:
adminlets server owners administer and configure the bot.archcontains commands for searching the Arch wiki, repositories, and AUR.blacklistcan automatically delete messages matching configurable regexes.colorsgenerates, manages, and assigns color roles.figletconverts text to ASCII art.helpprovides a help command that displays information about commands.musicis a fully functional music bot that uses youtube-dl to play audio by URL. (Currently broken)querieshelps manage support channels using a database of support questions.snippetslets users invoke configurable text snippets.utilprovides simple utility commands.xkcdallows searching and posting XKCD comics.
Click this link to invite qbot to your own server.
Clone this Git repository and enter its directory.
Run nix-build ./shell.nix. The resulting executable is at result/bin/qbot.
Install Ruby, at least version 3.0 (higher versions untested). Install bundler.
Clone this Git repository. Enter the directory. Run bundle install to set up
the environment.
To start the bot, run bundle exec qbot.
qbot is configured in a YAML file at config/global.yml. Copy the example
config to config/global.yml and add the correct settings for your instance.
Start the bot.
qbot uses an SQLite database to store per-server configuration and user data.
To initialize the database, let qbot fully start up, then enter irb into the
bot CLI to enter the irb console. In this mode, run Database.define_schema.
Press Ctrl+D to exit and type rs to restart the bot.
Bot CLI:
rsorrestartrestarts the bot.rcorreload-configreloads the config.lmorload-moduleloads or reloads a module.irbopens a REPL in the context of the bot.- The
CommandBotobject is calledQBot.bot.
- The
quitorstopstops the bot.
See CONTRIBUTING.md.