Project

General

Profile

Quassel Config File Format

The monolithic quassel client, the distributed quassel client, and the quassel core binary all write a config file. For the core, this configuration file primarily contains connection information for the configured database backend. The client(s) have much larger configuration files, containing among other things local UI settings.

The config files encode QVariants into strings in a number of places rather than simply storing raw, human-readable data. This makes it easy for quassel to load and save the configuration but difficult for a human to figure out what's going on, or modify it.

For more information on QVariants, please see the Qt documentation: https://doc.qt.io/qt-5/qvariant.html

quasselconf

quasselconf is a small program that parses a quassel configuration file and prints a human-readable version of it, decoding all QVariants. It is a community tool written by TC01 (#quassel on Libera Chat). It's available on gitlab here: https://gitlab.com/TC01/quasselconf. if you have bugs or feature requests, please ask on IRC or file them here.

The main usage case for this is to check the database connection information that's been saved in a core config file.