Spell is a framework that provides necessary tooling to create highly customisable, shells for your wayland compositors (like hyprland) using Slint UI.
Rather then leveraging Gtk for widget creation, Slint declarative language provides a very easy but comprehensive way to make aesthetic interfaces. It, supports rust as backend, so as though there are not many batteries (for now) included in the framework itself, everything can be brought to life from the dark arts of rust.
No promises but I think I can push it to a release in 3-4 months.
The project started as a personal repo for my own use. There is lack of widget creating tools in rust. Secondly, I had a question:
How the heck wayland works?
So, to understand wayland and side-by-side create a client gave birth to Spell. I know a lot more about functioning of wayland than I did. Also, a framework developed that could be delivered in some time for others to use and create widgets in rust.
Warning
The crate is under active development and is not ready for use. I have encountered a few walls while optimising the renderer, which may require some changes to slint itself. I have to first understand SIMD myself and then pull a few PRs to make the slint adapter compatible. Then only the animations would be smooth and frame rates would improve.
Since, the crate has not yet been published, you can only use it from the github link in
your Cargo.toml
file.
Slint because it is a simple yet powerful declarative lang that is extremely easy to learn (you can even get a sense in just few mins here). Secondly, unlike other good UI kits, it just has awesome integration for rust. A compatibility that is hard to find.
A lot of things are left to be done, but following core things are not implemented yet which might cause problem for widget creation.
- Resize of buffers aren't possible.
- It is irrelevant to define
Width
andHeight
of Window, as that should be provided directly in yourmain
function. (Though, I must say that recommended way of creating windows with curved borders is to place aRectangle
in a transparent window and then define itsborder_radius
.)
Having said that,you should try creating static widgets (like showing clock, day etc) at
this point with spell
and see how that turns out.
I am creating my own shell from spell, which is currently private and will soon be shown
on display as spell becomes more mature. As for producing a minimal example, you can clone
slint-rust-template and change the name to your preferred name ( don't forget to modify Cargo.toml
).Then add spell in dependencies
from this github link along with the following patches in the bottom.
[patch.crates-io]
slint = { git = "https://github.com/slint-ui/slint" }
slint-build = { git = "https://github.com/slint-ui/slint" }
i-slint-core = { git = "https://github.com/slint-ui/slint" }
i-slint-renderer-skia = { git = "https://github.com/slint-ui/slint" }
and then replace the main.rs
with following contents:
use std::{cell::RefCell, env, error::Error, rc::Rc};
use spell::{
cast_spell,
layer_properties::{LayerAnchor, LayerType, WindowConf},
shared_context::SharedCore,
slint_adapter::{SpellLayerShell, SpellSkiaWinAdapter},
wayland_adapter::SpellWin,
};
slint::include_modules!();
fn main() -> Result<(), Box<dyn Error>> {
let width: u32 = 376;
let height: u32 = 576;
let core = Rc::new(RefCell::new(SharedCore::new(width, height)));
let window_adapter = SpellSkiaWinAdapter::new(core.clone(), width, height);
let window_conf = WindowConf::new(
width,
height,
(Some(LayerAnchor::TOP), Some(LayerAnchor::LEFT)),
(5, 0, 0, 10),
LayerType::Top,
core,
window_adapter.clone(),
false,
);
let (waywindow, event_queue) = SpellWin::invoke_spell("counter widget", window_conf);
let platform_setting = slint::platform::set_platform(Box::new(SpellLayerShell {
window_adapter: window_adapter,
time_since_start: std::time::Instant::now(),
}));
if let Err(error) = platform_setting {
panic!("{error}");
}
let ui = Menu::new()?;
//Slint Managing Inputs;
ui.on_request_increase_value({
let ui_handle = ui.as_weak();
move || {
let ui = ui_handle.unwrap();
ui.set_counter(ui.get_counter() + 1);
}
});
cast_spell( waywindow, event_queue)
}
No batteries, but common functionalities like system tray, temp etc, will be added later for convenience. I recommend the use of following crates for some basic usage, though you must note that I haven't used them extensively myself (for now).
- sysinfo: For System info like uptime, cpu, memory usage etc.
- rusty-network-manger: For network management.
- bluer: For bluetooth management.
There are no docs now but some docs will be added before a stable release.
I should say that at this point, the crate is not ready for contributions but people can open issues for suggestions. Bugs and feature-requests will be ignored for now. As soon as a stable release happens, I will restructure my workflow for issues and PR.