update README

This commit is contained in:
Ferdinand Schober
2022-09-16 13:05:32 +02:00
parent f9e4e069cb
commit f2b48a38db
2 changed files with 6 additions and 4 deletions

View File

@@ -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?)

View File

@@ -138,7 +138,7 @@ impl Dispatch<wl_registry::WlRegistry, ()> for App {
}
"wl_shm" => {
let shm = registry.bind::<wl_shm::WlShm, _, _>(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 =