{"id":32458373,"url":"https://github.com/wegel/vwl","last_synced_at":"2025-10-26T10:53:40.495Z","repository":{"id":315511444,"uuid":"1059135627","full_name":"wegel/vwl","owner":"wegel","description":"A simple but powerful tiling window manager for Wayland.","archived":false,"fork":false,"pushed_at":"2025-10-08T14:19:38.000Z","size":474,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-08T16:21:51.875Z","etag":null,"topics":["dwl","dwm","tiling-window-manager","tiling-wm","wayland","wlroots"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wegel.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-18T03:42:39.000Z","updated_at":"2025-10-08T14:19:42.000Z","dependencies_parsed_at":"2025-10-08T16:11:53.017Z","dependency_job_id":"3ad652b6-a2ec-43f8-848b-9915b821d8a0","html_url":"https://github.com/wegel/vwl","commit_stats":null,"previous_names":["wegel/vwl"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wegel/vwl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wegel%2Fvwl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wegel%2Fvwl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wegel%2Fvwl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wegel%2Fvwl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wegel","download_url":"https://codeload.github.com/wegel/vwl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wegel%2Fvwl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281092764,"owners_count":26442440,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-26T02:00:06.575Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dwl","dwm","tiling-window-manager","tiling-wm","wayland","wlroots"],"created_at":"2025-10-26T10:53:39.685Z","updated_at":"2025-10-26T10:53:40.490Z","avatar_url":"https://github.com/wegel.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"vwl\n===\n\nwlroots-based Wayland compositor with virtual outputs and physical cursor continuity.\nOriginally forked from dwl.\n\nLOC: 5275 total, 2770 vwl.c\n\nFEATURES\n--------\n- virtual outputs (split physical monitors into independent workspaces)\n- physical cursor continuity (smooth cursor movement across monitor gaps)\n- master/stack tiling\n- tabbed layout\n- fullscreen modes (virtual/monitor)\n- per-workspace layout state\n- floating windows\n- XWayland support\n\nKEYBINDS\n--------\nmod = logo key\n\nmod+return      spawn terminal\nmod+d           spawn menu\nmod+q           kill client\nmod+j/k         focus next/prev\nmod+h/l         adjust master width\nmod+m           zoom (swap master)\nmod+f           toggle fullscreen (virtual-\u003emonitor-\u003eoff)\nmod+t           toggle tabbed layout\nmod+space       cycle layout\nmod+shift+space toggle floating\nmod+shift+e     quit compositor\nmod+comma       focus monitor left\nmod+period      focus monitor right\nmod+shift+\u003c/\u003e   move client to monitor left/right\nmod+0-9         view workspace 0-9\nmod+shift+0-9   move client to workspace 0-9\nmod+ctrl+shift+h/j/k/l  move workspace to virtual output\n\nBUILDING\n--------\nmake\n\nRUNNING\n-------\n./vwl\n\nDEPENDENCIES\n------------\nwlroots 0.19, wayland-server, xkbcommon, libinput, pixman\noptional: xcb, xcb-icccm (for XWayland)\n\nCONFIGURATION\n-------------\nEdit config.def.h and recompile.\nKey settings:\n- physical cursor gap jumps: enable_physical_cursor_gap_jumps\n- virtual output rules: vorules[]\n- monitor rules: monrules[]\n- keyboard/trackpad settings\n\nVIRTUAL OUTPUTS\n---------------\nSplit physical monitors into named regions. Each region gets its own workspace.\nMove workspaces between regions with mod+ctrl+shift+hjkl.\n\nstatic const VirtualOutputRule vorules[] = {\n    /* monitor  name       x    y     w    h   mfact nmaster lt[0]        lt[1] */\n    { \"DP-1\",   \"left\",    0,   0,  960, 1080, 0.55f, 1, \u0026layouts[0], \u0026layouts[1] },\n    { \"DP-1\",   \"right\", 960,   0,  960, 1080, 0.55f, 1, \u0026layouts[0], \u0026layouts[1] },\n};\n\nw/h of 0 = expand to monitor's remaining space.\nmfact = master area factor (0.0-1.0).\nnmaster = number of master windows.\nlt[0]/lt[1] = primary/secondary layout functions.\n\nFULLSCREEN MODES\n----------------\n- Virtual fullscreen: fills virtual output region\n- Monitor fullscreen: fills entire physical monitor\nToggle with mod+f cycles through: off -\u003e virtual -\u003e monitor -\u003e off\n\nPHYSICAL CURSOR CONTINUITY\n---------------------------\nSeamless cursor tracking across monitor gaps. Set physical dimensions in monrules[].\n\nstatic const MonitorRule monrules[] = {\n    /* name      scale transform          x    y   phys{} */\n    { \"DP-1\",    1.0f, WL_OUTPUT_TRANSFORM_NORMAL, 0, 0, {\n        .width_mm = 520,    /* physical width in mm */\n        .height_mm = 320,   /* physical height in mm */\n        .x_mm = 0,          /* physical X position */\n        .y_mm = 0,          /* physical Y position */\n        .size_is_set = 1,   /* use explicit size */\n        .origin_is_set = 1, /* use explicit origin */\n    }},\n    { NULL, 1, WL_OUTPUT_TRANSFORM_NORMAL, -1, -1, {} }, /* fallback */\n};\n\nx/y = pixel position (-1,-1 = auto).\nscale = HiDPI factor.\ntransform = rotation (NORMAL/90/180/270/FLIPPED_*).\nphys{} = real-world dimensions for cursor math.\n\nSTATUS\n------\nWork in progress, used daily by the dev.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwegel%2Fvwl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwegel%2Fvwl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwegel%2Fvwl/lists"}