diff --git a/src/kmscon_conf.c b/src/kmscon_conf.c index 579db3e..5b01d2e 100644 --- a/src/kmscon_conf.c +++ b/src/kmscon_conf.c @@ -127,7 +127,7 @@ static void print_help() "\t --hwaccel [off] Use 3D hardware-acceleration if\n" "\t available\n" "\t --primary-gpu-only [off] Use primary GPU only\n" - "\t --all-gpus [off] Use all GPUs unconditionally\n" + "\t --all-gpus [on] Use all GPUs unconditionally\n" "\t --fps [50] Limit frame-rate\n" "\t --render-engine [-] Console renderer\n" "\t --render-timing [off] Print renderer timing information\n" @@ -487,7 +487,7 @@ int kmscon_conf_new(struct conf_ctx **out) CONF_OPTION_BOOL_FULL(0, "drm", aftercheck_drm, NULL, NULL, &conf->drm, true), CONF_OPTION_BOOL(0, "hwaccel", &conf->hwaccel, false), CONF_OPTION_BOOL(0, "primary-gpu-only", &conf->primary_gpu_only, false), - CONF_OPTION_BOOL(0, "all-gpus", &conf->all_gpus, false), + CONF_OPTION_BOOL(0, "all-gpus", &conf->all_gpus, true), CONF_OPTION_UINT(0, "fps", &conf->fps, 50), CONF_OPTION_STRING(0, "render-engine", &conf->render_engine, NULL), CONF_OPTION_BOOL(0, "render-timing", &conf->render_timing, false),