state.py 300 B

123456789101112
  1. # Stores the id of the current Pulseaudio sink, if there is one loaded
  2. sink = -1
  3. # Stores the configuration (loaded from .config/lyrebird/config.toml)
  4. config = None
  5. # Stores all of the loaded presets (loaded from presets.toml)
  6. loaded_presets = []
  7. # Stores the current preset
  8. current_preset = None