From b48a3f3595f446bbabe1637f19838b25b6eb888d Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Tue, 1 Aug 2023 18:41:06 -0700 Subject: modules/rkt: make "blank" default scenes= The "compose,compose,compose,compose" default was never intended to be permanent, but gave a set of scenes to test the Rocket integrations like scene selection and scene-specific tracks without any additional effort. Now that there's scener for easily adding/editing scenes, and things are just generally more mature, I think it makes sense to just go back to something minimal here. I'd really rather just have it be "", but that's not handled well presently. There isn't really a way to start with an empty scenes set for rkt. Which is awkward, but "blank" is close. It'd just be nice to start with an altogether blank slate rather than having to always edit the default first scene when starting anew... --- src/modules/rkt/rkt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/rkt') diff --git a/src/modules/rkt/rkt.c b/src/modules/rkt/rkt.c index 26b5ea7..9697c42 100644 --- a/src/modules/rkt/rkt.c +++ b/src/modules/rkt/rkt.c @@ -409,7 +409,7 @@ static int rkt_setup(const til_settings_t *settings, til_setting_t **res_setting &(til_setting_spec_t){ .name = "Comma-separated list of modules for scenes to sequence", .key = "scenes", - .preferred = "compose,compose,compose,compose", + .preferred = "blank", .annotations = NULL, .as_nested_settings = 1, }, -- cgit v1.2.1