Go to file
Markus Ongyerth 6834067ef5 sends the modifiers on wlr_seat_set_keyboard
Without this, a client will lose modifiers for one keyboard, when a key
is pressed on the other.
With this the client will always use the modifiers tate of the keyboard
the key was pressed on.
2018-01-05 22:20:46 +01:00
backend fix build without systemd 2018-01-02 16:39:58 +01:00
examples Fix views outside output layout 2017-12-31 12:49:06 +01:00
include Merge pull request #542 from emersion/abstract-data-source 2018-01-04 06:15:17 -05:00
protocol Add wlr_primary_selection_device_manager and wlr_primary_selection_source 2017-12-22 19:20:12 +01:00
render Refactor wlr_egl_init to accept config_attribs 2017-12-17 23:51:04 +01:00
rootston Merge pull request #544 from emersion/fix-views-outside-output-layout 2018-01-01 11:45:08 -05:00
types sends the modifiers on wlr_seat_set_keyboard 2018-01-05 22:20:46 +01:00
util Allow configurable verbosity 2017-12-31 14:50:19 -07:00
xcursor move get_resize_name to xcursor 2017-12-08 06:08:06 -05:00
xwayland seat: rename selection_source to selection_data_source, remove unused data_device 2017-12-30 09:58:04 +01:00
.build.yml Fix CI build 2017-11-02 00:19:51 +01:00
.editorconfig Add wlr_primary_selection_device_manager and wlr_primary_selection_source 2017-12-22 19:20:12 +01:00
.gitignore add configuration file 2017-08-26 08:32:11 -04:00
.travis.yml Fix CI build 2017-11-02 00:19:51 +01:00
CONTRIBUTING.md Update CONTRIBUTING.md 2017-12-27 10:39:53 -05:00
LICENSE Initial commit 2017-04-25 11:32:52 -04:00
README.md readme: change running instructions 2017-11-16 15:59:12 -05:00
glgen.sh Change glapi.sh to generate both files 2017-11-22 14:04:29 +13:00
meson.build meson: fix include path in generated .pc 2018-01-04 23:41:44 +01:00
meson_options.txt Make xwayland compile-time optional 2017-10-06 21:50:25 +00:00

README.md

wlroots

Pluggable, composable modules for building a Wayland compositor.

This is a WIP: status

Contributing

See CONTRIBUTING.md

Building

Install dependencies:

  • wayland
  • wayland-protocols
  • EGL
  • GLESv2
  • DRM
  • GBM
  • libinput
  • udev
  • pixman
  • systemd (optional, for logind support)
  • elogind (optional, for logind support on systems without systemd)
  • libcap (optional, for capability support)
  • asciidoc (optional, for man pages)

Run these commands:

meson build
ninja -C build

(On FreeBSD, you need to pass an extra flag to prevent a linking error: meson build -D b_lundef=false)

Running the Reference Compositor

wlroots comes with a reference compositor called rootston that demonstrates the features of the library.

After building, run rootston from a terminal or VT with:

./build/rootston/rootston

Now you can run windows in the compositor from the command line or by configuring bindings in your rootston.ini file.