15 lines
455 B
TOML
15 lines
455 B
TOML
|
|
# Example ocd config. Copy to ~/.config/ocd/config.toml and edit.
|
||
|
|
# Cookies are the full Cookie header value. ${VAR} expands from the environment.
|
||
|
|
default_concurrency = 1
|
||
|
|
default_ttl_secs = 180
|
||
|
|
|
||
|
|
[[account]]
|
||
|
|
name = "work"
|
||
|
|
cookie = "${OCD_COOKIE_WORK}"
|
||
|
|
default_workspace = "ws_REPLACE_ME"
|
||
|
|
extra_workspaces = []
|
||
|
|
|
||
|
|
[[account]]
|
||
|
|
name = "personal"
|
||
|
|
cookie = "ocd_session=...."
|
||
|
|
default_workspace = "ws_REPLACE_ME"
|