Files
gotify-tray-customized/gotify_tray/database/default_settings.py
2022-12-28 18:21:43 +01:00

33 lines
1010 B
Python

import os
from pathlib import Path
from ..__version__ import __title__
DEFAULT_SETTINGS = {
"theme": "default",
"message/check_missed/notify": True,
"logging/level": "Disabled",
"export/path": os.path.join(
Path.home(), f"{__title__.replace(' ', '-').lower()}-settings.bytes"
),
"shortcuts/quit": "Ctrl+Q",
"tray/notifications/priority": 5,
"tray/notifications/duration_ms": 5000,
"tray/notifications/icon/show": True,
"tray/notifications/click": True,
"tray/icon/unread": False,
"watchdog/interval/s": 60,
"MessageWidget/image/size": 33,
"MessageWidget/content_image/W_percentage": 1.0,
"MessageWidget/content_image/H_percentage": 0.5,
"MessageWidget/priority_color": True,
"MainWindow/label/size": 25,
"MainWindow/button/size": 33,
"MainWindow/application/icon/size": 40,
"ImagePopup/enabled": False,
"ImagePopup/extensions": [".jpg", ".jpeg", ".png", ".svg"],
"ImagePopup/w": 400,
"ImagePopup/h": 400,
}