import os from pathlib import Path from ..__version__ import __title__ DEFAULT_SETTINGS = { "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, "watchdog/interval/s": 60, "MessageWidget/image/size": 33, "MainWindow/label/size": 25, "MainWindow/button/size": 33, "MainWindow/application/icon/size": 40, "ImagePopup/enabled": False, "ImagePopup/w": 400, "ImagePopup/h": 400, }