Vikash
Vikash
I managed to solve it with ``` flatpak override --user --socket=wayland com.slack.Slack ```
@samuelcolvin I am not sure if I understand the PR. Is it ending the run after the tool execution or before? For example, if I don't use any framework in...
@jeertmans is there an example of how to do this? I am struggling. I have this ```rust #[derive(Debug, Copy, Clone, PartialEq, Logos)] #[logos(extras = LexerMode)] pub enum TokenKind { #[token("#{"),...
It's actually SASS interpolation. I ignored other tokens for convenience. In SASS you can have identifiers like this `variable-#{$num}` My idea for lexing interpolation was to have an `InterpolationStart` token...
@notgull Seems like it, looks like it maintains an extra field ```rust /// Indicates that a file descriptor or socket can read or write without blocking. #[derive(Debug, Clone, Copy, PartialEq,...
@notgull Thanks for the response. If I do the first pattern. How should I process events. If I use this ```rust fn process_events( &mut self, readiness: calloop::Readiness, token: calloop::Token, callback:...
@jeertmans thanks. I checked the examples in the book, and it does point towards this being possible in theory. But the examples using callbacks and extras are all for simple...
It's still not clear what is supposed to happen from the docs ```python app = Starlette( routes=[ Mount('/search', app=mcp.sse_app()), ] ) ``` When I do this `http://localhost:8000/search/sse` seems to work...
Are you still planning to update the PR? With the new splitting up into crates, is the expectation that all this will move to the winit-wayland crate?
@AaronErhardt I think using the layer shell already seems pretty straightforward Based on this example https://github.com/pentamassiv/gtk4-layer-shell-gir/blob/main/gtk4-layer-shell/examples/simple-example.rs After importing the trait ```rust use gtk4_layer_shell::{Layer, LayerShell}; ``` I can just add things...