wayland-tutorial/README.md

29 lines
267 B
Markdown
Raw Normal View History

2024-06-05 21:07:23 +02:00
# Tutorial
- https://wayland-book.com/
## Compiling
Server
```bash
cc -o server server.c -lwayland-server
```
Client
```bash
cc -o client client.c -lwayland-client
```
## Run
Server
```bash
./server &
```
Client
```bash
WAYLAND_DISPLAY=wayland-1 ./client
```