Wobuzz/wobuzz/settings.py
The Wobbler 3fd29bcf92 Made playlists load on click if they weren't.
Also set default for setting "load_on_start" to False because with this change, it feels a lot cleaner this way and uses less RAM.
2025-02-27 17:26:33 +01:00

14 lines
282 B
Python

#!/usr/bin/python3
from dataclasses import dataclass
@dataclass
class Settings:
window_size: tuple[int, int]=None
window_maximized: bool=False
library_path: str="~/.wobuzz"
clear_track_cache: bool=True
latest_playlist: str=None
load_on_start: bool=False