diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2024-06-15 18:58:02 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2025-02-22 10:44:06 -0800 |
commit | 128f297b83efeff22394cd18069603112ce0938e (patch) | |
tree | ca13ec7a5994367c8c06b3c464108917a15efcee /src/screen.c | |
parent | 44041a498aaee2143cf5368c2207a5695ff9885c (diff) |
screen: support xwin next/prev screen_rels
This is an attempt to minimally support autoconfing windows to
different screens on multihead setups.
Diffstat (limited to 'src/screen.c')
-rw-r--r-- | src/screen.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/screen.c b/src/screen.c index 0563202..ed8af7b 100644 --- a/src/screen.c +++ b/src/screen.c @@ -97,6 +97,8 @@ const vwm_screen_t * vwm_screen_find(vwm_t *vwm, vwm_screen_rel_t rel, ...) break; } + case VWM_SCREEN_REL_XWIN_NEXT: + case VWM_SCREEN_REL_XWIN_PREV: case VWM_SCREEN_REL_XWIN: { va_list ap; vwm_xwindow_t *xwin; @@ -113,6 +115,22 @@ const vwm_screen_t * vwm_screen_find(vwm_t *vwm, vwm_screen_rel_t rel, ...) best_pct = this_pct; } } + + if (rel != VWM_SCREEN_REL_XWIN) { + unsigned idx = best - vwm->xinerama_screens; + + /* find the neighboring screen according to rel, note this isn't + * a spatial neighbor trying to consider RandR screen layout - it's + * simply next/prev in the list of screens in the order they appear + * there. + */ + if (rel == VWM_SCREEN_REL_XWIN_NEXT) + idx += 1; + else if (rel == VWM_SCREEN_REL_XWIN_PREV) + idx += vwm->xinerama_screens_cnt - 1; + + best = &vwm->xinerama_screens[idx % vwm->xinerama_screens_cnt]; + } break; } |