interface IConfig {
    app_title: string
    default_config: {
        language: "zh" | "en" // i18n
        "common.theme": "light" | "dark" | "auto" // 主题
        "desktop:wallpaper": string
        "update.repo"?: string // 更新地址
        "update.owner"?: string // 更新通道
        "update.allowDowngrade": boolean
        "update.allowPrerelease": boolean
        "editor.bg": string // 更新通道
        "editor.logoType": "logo" | "bg" // 更新通道
        "editor.fontFamily": string // 更新通道
        // "snippet.storagePath": string // 代码片段保存位置
        // "bookmark.storagePath": string // 书签保存位置
        // backup_rule: string // 备份规则
        storagePath: string // 存储地址
    }
}
export default {
    app_title: "zephyr", // 和风
    default_config: {
        storagePath: "$storagePath$",
        language: "zh",
        "common.theme": "auto",
        "desktop:wallpaper": "",
        "editor.bg": "",
        "editor.logoType": "logo",
        "editor.fontFamily": "Cascadia Mono, Consolas, 'Courier New', monospace",
        "update.repo": "wood-desktop",
        "update.owner": "npmrun",
        "update.allowDowngrade": false,
        "update.allowPrerelease": false,
    },
} as IConfig