json is dead. toml is the new meta.
{
"default_session_data": {
"tag": "work",
"name": "Working",
"ratio": 5
},
"notification_priority": "normal",
"tag_colors": {
"work": "red",
"study": "blue",
"exercise": "green",
"coding": "aquamarine3",
"video": "aquamarine3"
}
}
vs
[defaults]
tag = 'work'
name = 'working'
divisor = 5
[notifications]
priority = 'Normal'
sound = 'path/to/file'
[tags]
work = "red"
study = "blue"
exercise = "green"
coding = "aquamarine3"
video = "aquamarine3"
clean.
https://realpython.com/python-toml/#use-toml-as-a-configuration-format
jsonis dead.tomlis the new meta.{ "default_session_data": { "tag": "work", "name": "Working", "ratio": 5 }, "notification_priority": "normal", "tag_colors": { "work": "red", "study": "blue", "exercise": "green", "coding": "aquamarine3", "video": "aquamarine3" } }vs
clean.
https://realpython.com/python-toml/#use-toml-as-a-configuration-format