OK, I think I got to the bottom of the pulse issue. Yikes.

This commit is contained in:
casey langen 2020-04-07 20:28:11 -07:00
parent 816cafad5a
commit f58f5228a1
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
set -eu set -eu
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
LANG=C.UTF-8 "${DIR}/musikcube" PULSE_SOCKET="unix:/run/user/${UID}/pulse/native"
LANG=C.UTF-8 PULSE_SERVER=${PULSE_SOCKET} "${DIR}/musikcube"

View File

@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
set -eu set -eu
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
LANG=C.UTF-8 "${DIR}/musikcubed" "$@" PULSE_SOCKET="unix:/run/user/${UID}/pulse/native"
LANG=C.UTF-8 PULSE_SERVER=${PULSE_SOCKET} "${DIR}/musikcubed" "$@"