Merge pull request #2771 from hwangcc23/fix-2764

Support to get the primary output
This commit is contained in:
Ingo Bürk
2017-05-16 18:39:37 +02:00
committed by GitHub
2 changed files with 28 additions and 7 deletions

View File

@ -45,10 +45,13 @@ static Output *get_output_by_id(xcb_randr_output_t id) {
*/
Output *get_output_by_name(const char *name) {
Output *output;
TAILQ_FOREACH(output, &outputs, outputs)
if (output->active &&
strcasecmp(output->name, name) == 0)
return output;
bool get_primary = (strcasecmp("primary", name) == 0);
TAILQ_FOREACH(output, &outputs, outputs) {
if ((output->primary && get_primary) ||
(output->active && strcasecmp(output->name, name) == 0)) {
return output;
}
}
return NULL;
}