You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,9 +10,9 @@
10
10
11
11
>Docker image that includes Wine and Winetricks for running Windows applications on Linux and macOS
12
12
13
-
The docker-wine container can either be run with X11 forwarding or as an RDP server to suit your use case. The default is to use X11 forwarding which utilizes your machine's X server to render graphics directly into your current session and play sounds through pulseaudio (audio redirection on Linux only).
13
+
The docker-wine container can either be run with X11 forwarding or as an RDP server to suit your use case. The default is to use X11 forwarding which utilizes your machine's X server to render graphics directly into your current session and play sounds through pulseaudio.
14
14
15
-
Using docker-wine with an RDP server allows the container to be run on a headless machine or a machine that may not be running an X server. You can then use a Remote Desktop client to connect to the container which may be located either on your local or a remote machine. This is currently the only solution if you require sound on macOS.
15
+
Using docker-wine with an RDP server allows the container to be run on a headless machine or a machine that may not be running an X server. You can then use a Remote Desktop client to connect to the container which may be located either on your local or a remote machine.
16
16
17
17
---
18
18
@@ -263,3 +263,5 @@ To test sound, try using `pacat`:
263
263
```bash
264
264
./docker-wine pacat -vv /dev/urandom
265
265
```
266
+
267
+
You can find additional pulseaudio troubleshooting steps at https://github.com/OpenVoiceOS/ovos-docker/blob/dev/README_MACOS.md
Copy file name to clipboardExpand all lines: docker-wine
+161-1Lines changed: 161 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -234,6 +234,84 @@ install_xquartz() {
234
234
return$installed
235
235
}
236
236
237
+
configure_pulseaudio () {
238
+
239
+
# Return 0 (true) if this function makes any changes
240
+
local changes_made=1
241
+
242
+
# Check PulseAudio installed
243
+
if!command -v pulseaudio >/dev/null 2>&1;then
244
+
local answer
245
+
local attempts
246
+
local max_attempts=5
247
+
248
+
# Prompt to allow install
249
+
echo"PulseAudio needs to be installed for sound forwarding to operate. If necessary, Homebrew will also be installed to perform the installation of PulseAudio."
0 commit comments