Skip to content

Commit 486cd18

Browse files
committed
initial commit
0 parents  commit 486cd18

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 outfoxxed
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE..

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Shell Protocols
2+
3+
Extra wayland protocols for desktop shell components.
4+
5+
## Why
6+
7+
Most desktop shells need far deeper integration into the compositor than a normal
8+
application does and is currently provided from wayland-protocols. This integration
9+
is usually achieved through private wayland protocols or compositor specific IPC.
10+
In desktop environments like KDE or GNOME, this isn't really an issue, as they
11+
own the entire stack, and getting a new integration is as simple as just implementing it.
12+
13+
Outside of those environments, we have a wide array of compositors and desktop shell
14+
components from independent authors who may not necessarily work with eachother.
15+
Usually this results in every desktop shell component having to implement custom
16+
IPC protocols from a number of compositors they wish to support, often with serious
17+
synchronization issues if not a wayland protocol.
18+
19+
This repository is an attempt to standardize common functionality wanted by desktop
20+
shells that is currently missing from wayland-protocols, with a goal of eventually
21+
upstreaming most or all of it in some form.
22+
23+
## Procedure
24+
25+
If a protocol works out, a merge request can be opened on wayland-protocols
26+
for further bikeshedding. If a protocol is merged upstream it will be marked
27+
as deprected in this repository.

0 commit comments

Comments
 (0)