#!/usr/bin/bash
#shellcheck disable=SC1090,SC2034

. "$(sfpath)" || exit 3

shellfu import saturnin

saturnin__main \
    --saturnin-app-codename "" \
    --saturnin-app-git-hash "fd8bf2077ea82e74736b6fb214471fac23702cd2" \
    --saturnin-app-tagline "All you need for desktop ... except the drapes" \
    --saturnin-app-url "https://gitlab.com/vornet/bmo/bmo" \
    --saturnin-app-version "0.2.3" \
    --saturnin-builtins "conf" \
    --saturnin-cache-home "$HOME/.cache/bmo" \
    --saturnin-config-home "$HOME/.config/bmo" \
    --saturnin-data-home "$HOME/.local/share/bmo" \
    --saturnin-conf-path "$(
        saturnin__conf_mkpath \
            "$HOME/.config/bmo/ini.d" \
            "$HOME/.config/bmo" \
            "/etc/bmo" \
            "/usr/share/bmo/ini.d"
    )" \
    --saturnin-conf-suffix ".ini" \
    --saturnin-help-topicpath "__SATURNIN_HELP_TOPICPATH__" \
    --saturnin-help-topicsuffix ".md" \
    --saturnin-libexec "/usr/libexec/bmo" \
    --saturnin-libexec-prefix "bmo-" \
    --saturnin-meta-help "+/usr/share/bmo/help" \
    --saturnin-sccompgen-path "/usr/share/bmo/complete" \
    --saturnin-msgmode "color" \
    --saturnin-verbose "false" \
    "$@"
