Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
allow configure x and y of outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
sevz17 committed Sep 8, 2022
1 parent ae42e43 commit 95ed790
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 3 additions & 3 deletions config.def.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
8 changes: 7 additions & 1 deletion dwl.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ typedef struct {
float scale;
const Layout *lt;
enum wl_output_transform rr;
int x, y;
} MonitorRule;

typedef struct {
Expand Down Expand Up @@ -930,6 +931,8 @@ createmon(struct wl_listener *listener, void *data)
wlr_xcursor_manager_load(cursor_mgr, r->scale);
m->lt[0] = m->lt[1] = r->lt;
wlr_output_set_transform(wlr_output, r->rr);
m->m.x = r->x;
m->m.y = r->y;
break;
}
}
Expand Down Expand Up @@ -959,7 +962,10 @@ createmon(struct wl_listener *listener, void *data)
* output (such as DPI, scale factor, manufacturer, etc).
*/
m->scene_output = wlr_scene_output_create(scene, wlr_output);
wlr_output_layout_add_auto(output_layout, wlr_output);
if (m->m.x < 0 || m->m.y < 0)
wlr_output_layout_add_auto(output_layout, wlr_output);
else
wlr_output_layout_add(output_layout, wlr_output, m->m.x, m->m.y);
}

void
Expand Down

0 comments on commit 95ed790

Please sign in to comment.