aboutsummaryrefslogtreecommitdiff
path: root/package.yaml
Commit message (Collapse)AuthorAge
* Have Meson orchestrate the whole build rather than stack.Josh Rahm27 hours
| | | | | | | | As a part of this, I changed the file layout to: rt/ - the Montis runtime plug/ - the Montis plugin wlroots/ - wlroots
* Just a whole bunch of changesJosh Rahm2024-03-27
|
* Implement more stuff. Add DSL for binding to the new input handler.Josh Rahm2024-03-21
|
* Version bumpJosh Rahm2024-03-15
|
* More flexing with the new keysM system.Josh Rahm2024-03-05
|
* Added a new KeysM monad.Josh Rahm2024-03-04
| | | | | | | | | | | | | | | This monad allows keybindings to look and feel like one is writing blocking code with constructs like: key <- nextKey when (key == x) $ do key2 <- nextKey ... ... but this code does not block or do any io shenanigans, it under the hood just changes the handler on the state. It seems pretty awesome and opens the doors for some pretty expressive key bindings.
* wipJosh Rahm2024-03-01
|
* Huge refactor for the Haskell code.Josh Rahm2024-02-28
| | | | | | | This adds new layout configuration, preparing for actually using the layouts. This also restructures the code and tries to keep code interfacing with the foreign structures together and rename them to more sensible names.
* Have the plugin handle more responsibility with keybindings.Josh Rahm2024-02-21
| | | | The plugin now passes the key events to the Wayland clients.
* Fix plugin interface generation errosJosh Rahm2024-02-21
|
* Do most of keyboard handling in the plugin now.Josh Rahm2024-02-21
|
* Added ability to exit the program via a back-interface.Josh Rahm2024-02-16
|
* Framework for plugin to call into harness.Josh Rahm2024-02-14
| | | | | | This is done by passing an interface to the plugin from the harness. The plugin can then request the harness do some things (such as reload), and the harness will do that.
* Move Main.hs to Config.hs and override _start()Josh Rahm2024-02-11
| | | | | | | | | | Now if one tries to execute the built binary with 'stack run' or by just executing it, a helpful message prints to the screen instead of the segmentation fault that normally happens. This technically makes things not portable to other architectures, but it's all just window dressing and can be taken out if need be for other architectures.
* Change up a lot of stuff.Josh Rahm2024-02-11
| | | | | Add more functions to the plugin interface and write some generators to generate an interface header file and the plugin's loading code.
* Move the harness to its own CMake project.Josh Rahm2024-02-09
|
* Put more logic in the build script.Josh Rahm2024-02-09
| | | | | The build script will now create the symbolic links to the binary and the shared library.
* Add wlroots submodule and add custom build commands to build it.Josh Rahm2024-02-08
|
* Made some more complex state in Wetterhorn.Josh Rahm2024-02-08
| | | | | Things are still purely for testing as I figure out how best to handle the ffi boundary, though things are starting to make sense.
* Initial commit for Project Wetterhorn.Josh Rahm2024-02-08
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.