Differences between revisions 13 and 17 (spanning 4 versions)
Revision 13 as of 2018-09-26 19:16:49
Size: 4607
Editor: PengouinPdt
Comment: Add link to url FR
Revision 17 as of 2019-08-16 23:57:40
Size: 5364
Editor: nodiscc
Comment: link formatting
Deletions are marked like this. Additions are marked like this.
Line 59: Line 59:
 * [[http://swaywm.org/|SwayWM]] (RFP: DebianBug:821397, [[https://github.com/SirCmpwn/sway|Github project]]) (Will [[https://drewdevault.com/2017/10/26/Fuck-you-nvidia.html|stop]] supporting NVidia EGL/closed source driver from 1.0 onwards.)  * [[DebianPackage:sway]] ([[http://swaywm.org/|website]], [[https://github.com/SirCmpwn/sway|Github project]]) (Will [[https://drewdevault.com/2017/10/26/Fuck-you-nvidia.html|stop]] supporting NVidia EGL/closed source driver from 1.0 onwards.)
Line 104: Line 104:
=== Applications can't share information with each other... so how do I copy and paste? ===

=== I'm accustomed to running various programs (e.g. synaptic) as root in my X session. How will this work under Wayland? ===

(In fact, DebianPkg:synaptic was [[https://tracker.debian.org/news/1037065/synaptic-removed-from-testing/|removed from buster]] because it doesn't work under Wayland.)

There are plans to allow X11 applications running as root to use XWayland but native Wayland applications need to be restructured into a GUI part and a root part.

=== I run various programs over the network, e.g. through ssh X11 forwarding, or xhost. How will this work under Wayland? ===

=== I share monitors between systems using x2x. How will this work under Wayland? ===
Line 106: Line 118:
 * [[https://wiki.archlinux.org/index.php/Wayland|Arch Linux wiki]] - as usual, excellent resource
 * [[https://wayland.freedesktop.org/|Wayland homepage]]
 * [[https://wayland.freedesktop.org/faq.html|Wayland FAQ]]
 * https://wiki.archlinux.org/index.php/Wayland - Wayland - Arch Linux wiki
 * https://wayland.freedesktop.org/ - Wayland homepage
 * https://wayland.freedesktop.org/faq.html - Wayland FAQ

Translation(s): English - Français


Wayland is a computer protocol that specifies the communication between a display server and its clients, as well as a reference implementation of the protocol in the C programming language.

Wayland's main goal is replacing the X Window System with a modern, simpler windowing system in Linux and other Unix-like operating systems. The project's source code is published under the terms of the MIT License, a permissive free software licence.

As part of its efforts, the Wayland project also develops a reference implementation of a Wayland compositor called Weston.

Testing

To test Wayland, you will need to have a compatible compositor installed. A Wayland compositor combines the roles of the X window manager, compositing manager and display server. Weston is the reference implementation of the concept, but each desktop environment implements their own composition manager.

You can test weston directly from a regular X session with the following commands:

sudo apt install weston
weston

This will start a Wayland window in your regular X session where you can test things.

You can also test the mutter window manager directly:

sudo apt install mutter
mutter --nested --wayland

Then further Wayland clients will show up in that window. Try, for example, starting gnome-terminal.

Another way to test Wayland is to install the GNOME desktop environment and select the "GNOME on wayland" session when logging in.

Supported environments

Desktop environments:

  • GNOME 3.20+ (if specifically selected; X is used by default in Debian)
  • KDE (Plasma 5.4)
  • Enlightenment
  • Hawaii

Toolkits:

  • Qt 5
  • GTK+ 3.20+
  • Clutter
  • SDL 2.0.2+
  • EFL
  • GLFW 3.2

Window managers:

Note that any X program will still run, as there is a XWayland server that provides backwards compatibility with X program. Those programs will not, however, benefit from the security and performance improvements Wayland provides.

Partially supported

Unsupported

Desktop environments:

Window managers:

  • i3: FAQ, discussion.

  • other window managers unlikely to be supported

Troubleshooting

Xresources won't load

This is a known issue. Back in 2015, it was decided that the resources were too slow to load and that was dropped from the main GNOME session, see Redhat's bugzilla for more information.

Workaround: run this by hand or setup something to start it up automatically on session login.

xrdb -load .Xsession

FAQ

Why is Wayland necessary?

Wayland allows better isolation between processes: one window cannot access resources from, or inject keystrokes into, another window.

Wayland also has the potential to be faster, by reducing the amount of code between the processes and the hardware, by delegating lots of things to the processes themselves.

See also the Wayland FAQ for more information.

Applications can't share information with each other... so how do I copy and paste?

I'm accustomed to running various programs (e.g. synaptic) as root in my X session. How will this work under Wayland?

(In fact, synaptic was removed from buster because it doesn't work under Wayland.)

There are plans to allow X11 applications running as root to use XWayland but native Wayland applications need to be restructured into a GUI part and a root part.

I run various programs over the network, e.g. through ssh X11 forwarding, or xhost. How will this work under Wayland?

I share monitors between systems using x2x. How will this work under Wayland?

Further reading


CategoryDesktopEnvironment