We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e7907c commit 2a6596dCopy full SHA for 2a6596d
README.md
@@ -96,6 +96,19 @@ docker run --rm -it \
96
ghcr.io/kernelkit/demo:latest
97
```
98
99
+**With specific window size:**
100
+
101
+```bash
102
+# Useful if container detects wrong screen dimensions
103
+docker run --rm -it \
104
+ -e DISPLAY=$DISPLAY \
105
+ -v /tmp/.X11-unix:/tmp/.X11-unix \
106
+ -e SDL_AUDIODRIVER=pulseaudio \
107
+ -e PULSE_SERVER=unix:${XDG_RUNTIME_DIR}/pulse/native \
108
+ -v ${XDG_RUNTIME_DIR}/pulse/native:${XDG_RUNTIME_DIR}/pulse/native \
109
+ ghcr.io/kernelkit/demo:latest -w 1920x1080
110
+```
111
112
**Or use docker-compose:**
113
114
```bash
0 commit comments