Skip to content

Settings

solidSettings is a centralized database based on SQLite to persist all solidTV related values.

Further the solidSettings module provides a command-line tool to facilitate various use cases such as list all existing keys and set new values.

The functionality provided by the command-line tool is shown with the help page.

solidSettings -h
Usage:
solidSettings [options] [[[key] [value]] [description]]
solidSettings -lv

Info

-l list all keys matching the given string (with * or ? wildcards), default is all keys

-v verbose, add value and description to keys when listing with -l

Timezone

List the current LocalTimeZone

solidSettings -lv Device.Time.LocalTimeZone

Set the LocalTimeZone to CET (assumed this is available under /usr/share/zoneinfo)

solidSettings Device.Time.LocalTimeZone CET

Browser

Disable disk cache of the browser

solidSettings Device.Browser.ForceHTTPCacheInMemory true
solidSettings Device.Browser.DisableGPUShaderDiskCache true

Update

List the current Update Server URL

solidSettings -lv Device.Update.ServerURL
Back to top