diff options
author | Stivvo <stivvo01@gmail.com> | 2020-09-18 21:45:35 +0200 |
---|---|---|
committer | Guido Cella <guido@guidocella.xyz> | 2020-12-21 11:12:44 +0100 |
commit | 5668c616161d451e6f20be29b31bbf03f0f398a5 (patch) | |
tree | 06a2134d920abea58ec590ffbe5086783a2f2efb /config.def.h | |
parent | cf7c5eae214609eddbfb98de856d33c26f8964b9 (diff) |
Define monitor order with monrules[]
The order in which monitors are defined in monrules[] actually matters.
Monotors that aren't configured in monrules[], it will always be the
leftmost.
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 5e33204..8d76be4 100644 --- a/config.def.h +++ b/config.def.h @@ -32,6 +32,9 @@ static const MonitorRule monrules[] = { */ /* defaults */ { NULL, 0.55, 1, 1, &layouts[0], WL_OUTPUT_TRANSFORM_NORMAL }, + /* with the outputOder patch, the order in which every monitor is defined + * defines its actual position. Non configured monitor, are always added to + * the left */ }; /* keyboard */ |