diff options
author | Leonardo Hernández Hernández <leohdz172@protonmail.com> | 2022-09-08 12:24:13 -0500 |
---|---|---|
committer | Leonardo Hernández Hernández <leohdz172@proton.me> | 2023-02-13 13:14:29 -0600 |
commit | 23ede80f741d8452dbf223226974476ef8860541 (patch) | |
tree | 8c6c761d754b2d2316669ee54ad082baaa05e5cd /config.def.h | |
parent | f7d6a34cd98e3c090956c8a263a44972c3ffa05e (diff) |
allow configure x and y of outputs
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index a4f7c13..419e6ef 100644 --- a/config.def.h +++ b/config.def.h @@ -29,12 +29,12 @@ static const Layout layouts[] = { /* monitors */ static const MonitorRule monrules[] = { - /* name mfact nmaster scale layout rotate/reflect */ + /* name mfact nmaster scale layout rotate/reflect x y */ /* example of a HiDPI laptop monitor: - { "eDP-1", 0.5, 1, 2, &layouts[0], WL_OUTPUT_TRANSFORM_NORMAL }, + { "eDP-1", 0.5, 1, 2, &layouts[0], WL_OUTPUT_TRANSFORM_NORMAL -1, -1 }, */ /* defaults */ - { NULL, 0.55, 1, 1, &layouts[0], WL_OUTPUT_TRANSFORM_NORMAL }, + { NULL, 0.55, 1, 1, &layouts[0], WL_OUTPUT_TRANSFORM_NORMAL, -1, -1 }, }; /* keyboard */ |