moment/docs/CONFIG.md

3.6 KiB

Configuration

Folders
settings.py
accounts.json

Folders

On Linux, the folders are:

  • $XDG_CONFIG_HOME/mirage or ~/.config/mirage for config files
  • $XDG_DATA_HOME/mirage or ~/.local/share/mirage for user data
  • $XDG_CACHE_HOME/mirage or ~/.cache/mirage for cache data

For Flatpak installations, the folders are:

  • ~/.var/app/io.github.mirukana.mirage/config/mirage for config files
  • ~/.var/app/io.github.mirukana.mirage/data/mirage for user data
  • ~/.var/app/io.github.mirukana.mirage/cache/mirage for cache data

The folder locations can also be overriden by these environment variables:

  • $MIRAGE_CONFIG_DIR for config files
  • $MIRAGE_DATA_DIR for user data
  • $MIRAGE_CACHE_DIR for cache data

The user data folder contains saved encryption data, interface states and
themes.
The cache data folder contains downloaded files and thumbnails.

settings.py

A file written in the PCN format, located in the
config folder, which is manually created by the user to configure
the application's behavior.

The default settings.py, used when no user-written file exists, documents all
the possible options and can be found at:

  • src/config/settings.py in this repository
  • /usr/local/share/examples/mirage/settings.py or
    /usr/share/examples/mirage/settings.py on Linux installations
  • ~/.local/share/flatpak/app/io.github.mirukana.mirage/current/active/files/share/examples/mirage/settings.py for per-user Flatpak installations
  • /var/lib/flatpak/app/io.github.mirukana.mirage/current/active/files/share/examples/mirage/settings.py for system-wide Flatpak installations

Rather than copying the entire default file, it is recommended to
include it and only add the settings
you want to override.
For example, a user settings file that only changes the theme and some keybinds
could look like this:

self.include_builtin("config/settings.py")

class General:
    theme: str = "Glass.qpl"

class Keys:
    reset_zoom = ["Ctrl+Backspace"]

    class Messages:
        open_links_files            = ["Ctrl+Shift+O"]
        open_links_files_externally = ["Ctrl+O"]

When this file is saved while the application is running, the settings will
automatically be reloaded, except for some options which require a restart.
The default settings.py indicates which options require a restart.

accounts.json

This JSON file, located in the config folder, is managed by the
interface and doesn't need to be manually edited, except for changing account
positions via their order key.
The order key can be any number. If multiple accounts have the same order,
they are sorted lexically by user ID.

This file should never be shared, as anyone obtaining your access tokens will
be able to use your accounts.
Within the application, from the Sessions tab of your account's settings,
access tokens can be revoked by signing out sessions,
provided you have the account's password.

Example file:

{
    "@user_id:example.org": {
        "device_id": "ABCDEFGHIJ",
        "enabled": true,
        "homeserver": "https://example.org",
        "order": 0,
        "presence": "online",
        "status_msg": "",
        "token": "<a long access token>"
    },
    "@account_2:example.org": {
        "device_id": "KLMNOPQRST",
        "enabled": true,
        "homeserver": "https://example.org",
        "order": 1,
        "presence": "invisible",
        "status_msg": "",
        "token": "<a long access token>"
    }
}