config.yml (1.0 - 1.2)

The following is a template to modify config.yml for versions 1.0 to 1.2.

----------------------------------------------------------------

#Find the list of biomes at https://minecraft.gamepedia.com/Biome#Biome_IDs.
#Alternatively enter the biome name as it appears in the F3 menu, or use /infohud biome add
#Must be in UPPERCASE. Eg. DEEP_FROZEN_OCEAN
#Only biomes recognized by your MC version will be loaded.
brightBiomes: #Biomes where dark mode will turn on
- DESERT
- BIOME_NAME
- ...

#Interval in ticks between each refresh. Higher for better performance.
refreshRate: <number> {Default:5}

#Settings on a per-player basis
playerConfig:
  UUID: #The player's UUID
    coordinatesMode: <number> {0:Enabled | 1:Disabled}
    timeMode: <number> {0:Disabled | 1:Current Tick | 2:24h Clock | 3: 1.14 Villager Schedule}
    darkMode: <number> {0:Disabled | 1:Enabled | 2:Auto}
  AnotherUUID:
    coordinatesMode: 1
    timeMode: 2
    darkMode: 2
  ...