mirror of
https://github.com/aclist/dztui.git
synced 2026-08-29 11:17:12 +02:00
16 lines
316 B
Python
16 lines
316 B
Python
"""
|
|
Generic defaults used when initializing a config file from scratch
|
|
"""
|
|
config_boilerplate = {
|
|
"fav_server": "",
|
|
"fav_label": "",
|
|
"name": "",
|
|
"fullscreen": False,
|
|
"steam_api": "",
|
|
"default_steam_path": "",
|
|
"client": "",
|
|
"ip_list": [],
|
|
"use_miles": False,
|
|
"start_tab": 0,
|
|
}
|