Skip to content

Commit

Permalink
closer to getting sound working
Browse files Browse the repository at this point in the history
  • Loading branch information
scarytom committed Jan 14, 2024
1 parent b378454 commit b0cc32f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,14 @@
Creates a OCI (docker) image for running minifoxwq

```bash
docker run --rm -it -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=$DISPLAY -h $HOST -v $HOME/.Xauthority:/root/.Xauthority --device /dev/snd docker.io/netmelody/minifoxwq-oci
docker run --rm -it \
--volume /tmp/.X11-unix:/tmp/.X11-unix \
--env DISPLAY=${DISPLAY} \
--hostname ${HOST} \
--volume ${HOME}/.Xauthority:/root/.Xauthority \
--device /dev/snd \
--env PULSE_SERVER=unix:${XDG_RUNTIME_DIR}/pulse/native \
--volume ${XDG_RUNTIME_DIR}/pulse/native:${XDG_RUNTIME_DIR}/pulse/native \
--volume ${HOME}/.config/pulse/cookie:/root/.config/pulse/cookie \
docker.io/netmelody/minifoxwq-oci
```

0 comments on commit b0cc32f

Please sign in to comment.