diff options
author | Lennart Sauerbeck <devel@lennart.sauerbeck.org> | 2014-05-11 16:05:40 +0200 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2017-01-08 17:51:18 -0500 |
commit | e02759090ac975b52f1db06b8e27e82e56c5926f (patch) | |
tree | 574bec950c75ef014ef139ba2e0f4aa8220ace07 /src/gamma-randr.c | |
parent | Merge pull request #320 from Nepochal/typo (diff) | |
download | redshift-ng-e02759090ac975b52f1db06b8e27e82e56c5926f.tar.gz redshift-ng-e02759090ac975b52f1db06b8e27e82e56c5926f.tar.bz2 redshift-ng-e02759090ac975b52f1db06b8e27e82e56c5926f.tar.xz |
XRandR: Allow multiple but not all CRTCs to be redshifted
Previously only one CRTC could be set in the configuration file for
redshifting when XRandR mechanism was being used. That is fine for
a setup with two displays but breaks when three or more displays
are in use and one of those shouldn't be redshifted (e.g. two
computer displays and one TV connected to the computer).
The config value 'crtc' for method xrandr can now be entered as
comma separated list of multiple CRTCs. All CRTCs in the list will
be redshifted while all those not in the list will not be touched.
Diffstat (limited to 'src/gamma-randr.c')
-rw-r--r-- | src/gamma-randr.c | 65 |
1 files changed, 57 insertions, 8 deletions
diff --git a/src/gamma-randr.c b/src/gamma-randr.c index 6fa2bc6..901c0db 100644 --- a/src/gamma-randr.c +++ b/src/gamma-randr.c @@ -21,6 +21,7 @@ #include <stdlib.h> #include <stdint.h> #include <string.h> +#include <errno.h> #ifdef ENABLE_NLS # include <libintl.h> @@ -46,8 +47,9 @@ randr_init(randr_state_t *state) { /* Initialize state. */ state->screen_num = -1; - state->crtc_num = -1; + state->crtc_num = NULL; + state->crtc_num_count = 0; state->crtc_count = 0; state->crtcs = NULL; @@ -263,6 +265,7 @@ randr_free(randr_state_t *state) free(state->crtcs[i].saved_ramps); } free(state->crtcs); + free(state->crtc_num); /* Close connection */ xcb_disconnect(state->conn); @@ -277,7 +280,7 @@ randr_print_help(FILE *f) /* TRANSLATORS: RANDR help output left column must not be translated */ fputs(_(" screen=N\t\tX screen to apply adjustments to\n" - " crtc=N\t\tCRTC to apply adjustments to\n" + " crtc=N\tList of comma separated CRTCs to apply adjustments to\n" " preserve={0,1}\tWhether existing gamma should be" " preserved\n"), f); @@ -290,7 +293,50 @@ randr_set_option(randr_state_t *state, const char *key, const char *value) if (strcasecmp(key, "screen") == 0) { state->screen_num = atoi(value); } else if (strcasecmp(key, "crtc") == 0) { - state->crtc_num = atoi(value); + char *tail; + + /* Check how many crtcs are configured */ + const char *local_value = value; + while (1) { + errno = 0; + int parsed = strtol(local_value, &tail, 0); + if (parsed == 0 && (errno != 0 || + tail == local_value)) { + fprintf(stderr, _("Unable to read screen" + " number: `%s'.\n"), value); + return -1; + } else { + state->crtc_num_count += 1; + } + local_value = tail; + + if (*local_value == ',') { + local_value += 1; + } else if (*local_value == '\0') { + break; + } + } + + /* Configure all given crtcs */ + state->crtc_num = calloc(state->crtc_num_count, sizeof(int)); + local_value = value; + for (int i = 0; i < state->crtc_num_count; i++) { + errno = 0; + int parsed = strtol(local_value, &tail, 0); + if (parsed == 0 && (errno != 0 || + tail == local_value)) { + return -1; + } else { + state->crtc_num[i] = parsed; + } + local_value = tail; + + if (*local_value == ',') { + local_value += 1; + } else if (*local_value == '\0') { + break; + } + } } else if (strcasecmp(key, "preserve") == 0) { state->preserve = atoi(value); } else { @@ -309,7 +355,7 @@ randr_set_temperature_for_crtc(randr_state_t *state, int crtc_num, if (crtc_num >= state->crtc_count || crtc_num < 0) { fprintf(stderr, _("CRTC %d does not exist. "), - state->crtc_num); + crtc_num); if (state->crtc_count > 1) { fprintf(stderr, _("Valid CRTCs are [0-%d].\n"), state->crtc_count-1); @@ -376,17 +422,20 @@ randr_set_temperature(randr_state_t *state, { int r; - /* If no CRTC number has been specified, + /* If no CRTC numbers have been specified, set temperature on all CRTCs. */ - if (state->crtc_num < 0) { + if (state->crtc_num_count == 0) { for (int i = 0; i < state->crtc_count; i++) { r = randr_set_temperature_for_crtc(state, i, setting); if (r < 0) return -1; } } else { - return randr_set_temperature_for_crtc(state, state->crtc_num, - setting); + for (int i = 0; i < state->crtc_num_count; ++i) { + r = randr_set_temperature_for_crtc( + state, state->crtc_num[i], setting); + if (r < 0) return -1; + } } return 0; |