diff options
author | Ferdinand Bachmann <[email protected]> | 2024-07-20 00:37:20 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-07-20 00:37:20 +0200 |
commit | efccf25fcc72b416c63ff540703d9f061f39a7f2 (patch) | |
tree | ea08e70802dbf4f94d3d7c7bf7e90b03e97b3a84 /docs | |
parent | 8e15f91c2417c8f05d69a93f1294185ccc5f8f3e (diff) | |
download | Hyprland-efccf25fcc72b416c63ff540703d9f061f39a7f2.tar.gz Hyprland-efccf25fcc72b416c63ff540703d9f061f39a7f2.zip |
compositor: implement wayland socket handover (#6930)
* compositor: implement wayland socket handover
This commit implements the compositor side of the Wayland socket
handover protocol as described in the [KDE Wiki]. The CLI options are
chosen so that they are compatible with Kwin.
[KDE Wiki]: https://invent.kde.org/plasma/kwin/-/wikis/Restarting
* main: verify that --wayland-fd is a valid file descriptor
* main: fail if only one of --socket and --wayland-fd is passed
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Hyprland.1 | 4 | ||||
-rw-r--r-- | docs/Hyprland.1.rst | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/docs/Hyprland.1 b/docs/Hyprland.1 index f43d2c5d..5ef24fd5 100644 --- a/docs/Hyprland.1 +++ b/docs/Hyprland.1 @@ -32,6 +32,10 @@ Show command usage. .TP \f[B]-c\f[R], \f[B]--config\f[R] Specify config file to use. +\f[B]--socket\f[R] +Sets the Wayland socket name (for Wayland socket handover) +\f[B]--wayland-fd\f[R] +Sets the Wayland socket file descriptor (for Wayland socket handover) .SH BUGS .TP Submit bug reports and request features online at: diff --git a/docs/Hyprland.1.rst b/docs/Hyprland.1.rst index 54126501..c73b4343 100644 --- a/docs/Hyprland.1.rst +++ b/docs/Hyprland.1.rst @@ -41,6 +41,12 @@ OPTIONS **-c**, **--config** Specify config file to use. +**--socket** + Sets the Wayland socket name (for Wayland socket handover) + +**--wayland-fd** + Sets the Wayland socket file descriptor (for Wayland socket handover) + BUGS ==== |