diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2024-02-08 19:50:10 -0700 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2024-02-08 19:50:10 -0700 |
commit | 3e5cdf208606700b45acecf7c8a0b366a8caa106 (patch) | |
tree | 306272a3dde9b61cdb38f502493f895067af98c2 /README.md | |
download | wetterhorn-3e5cdf208606700b45acecf7c8a0b366a8caa106.tar.gz wetterhorn-3e5cdf208606700b45acecf7c8a0b366a8caa106.tar.bz2 wetterhorn-3e5cdf208606700b45acecf7c8a0b366a8caa106.zip |
Initial commit for Project Wetterhorn.
Project Wetterhorn is an attempt to make a Wayland compositor inspired
by XMonad. This project is different from other Wayland compositors in
that one of its core tenets is dynamic reloading of as much code as
possible.
The architecture is going to be:
- A harness, written in C, supplies the basic components to create a
Wayland compositor. This will be modeled on tinywl, sway, dwl and
others and use wlroots as its main abstraction to wayland.
- A dynamic library, written in Haskell, will provide bindings for
handling events and managing the windows. This dynamic library can
be recompiled and reloaded at runtime, allowing the user to write
their 'configuration' in Haskell, much as XMonad, but without
needing to reboot the whole compositor.
The boundaries of responsibilities between the harness and the plugin
will be an evolving matter, depending on how important the dynamic
reloading is for that specific responsibility and the need for raw
performance.
I chose this architecture as a compromise. With this architecture,
dynamic loading is achieved without the need to define a whole protocol
around controlling the window management, but this also gives the plugin
the full ability to control the compositor because it is literally a
part of it making anything possible in theory, which is a huge benefit.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..92122d8 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# wetterhorn |