diff --git a/README.md b/README.md index 8cfaa59..b5eda38 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,12 @@ Currently the mouse moves in a circle when receiving a(ny) udp packet on port 42 ## TODOS: - [x] Capture the actual mouse events on the server side via a wayland client and send them to the client -- [ ] Mouse grabbing on some 1 pixel wide transparent window server side -- [ ] Merge server and client +- [x] Mouse grabbing +- [x] Window with absolute position (wlr\_layer\_shell?) - [ ] Keyboard support -- [ ] Scrollwheel and button support +- [ ] Scrollwheel support +- [ ] Button support +- [ ] Merge server and client - [ ] Clipboard support - [ ] Graphical frontend (gtk?) diff --git a/src/bin/server.rs b/src/bin/server.rs index b89a3f2..69923dc 100644 --- a/src/bin/server.rs +++ b/src/bin/server.rs @@ -138,7 +138,7 @@ impl Dispatch for App { } "wl_shm" => { let shm = registry.bind::(name, 1, qh, ()); - let (width, height) = (64, 64); + let (width, height) = (64, 1440); let mut file = tempfile::tempfile().unwrap(); draw(&mut file, (width, height)); let pool =