Page 1 of 1

Access to a specifi screen directly

Posted: Saturday 12 March 2022 11:34
by usky73
Hi all,

I have done my dashticz config, it is a great tool !
The only thing that I did not found is how to access to a specific screen directly with the http link.

By default it will access to screen #1 but how to access to an other screen using the http link ?

Like http://192.168.1.1:8082?screen=2

Possible ?

Re: Access to a specifi screen directly

Posted: Saturday 12 March 2022 13:47
by Lokonli
Good to read you like Dashticz :)

There is a config parameter you can use in CONFIG.js, like this:

Code: Select all

config['start_page'] = 2
Via the url you can select an alternative config like:

Code: Select all

http://192.168.1.1:8082/?cfg=config2.js
or, only change one (ore more) config parameters directly:

Code: Select all

http://192.168.1.1:8082/?start_page=2
You can also combine it (for whatever reason...):

Code: Select all

http://192.168.1.1:8082/?cfg=config2.js&start_page=2