diff options
Diffstat (limited to '')
-rwxr-xr-x | bin/executable_mpd_only.sh | 7 | ||||
-rwxr-xr-x | bin/executable_mpd_others.sh | 5 |
2 files changed, 11 insertions, 1 deletions
diff --git a/bin/executable_mpd_only.sh b/bin/executable_mpd_only.sh index 39c3770..468c6a5 100755 --- a/bin/executable_mpd_only.sh +++ b/bin/executable_mpd_only.sh @@ -1,2 +1,7 @@ #!/bin/sh -pacmd exit && mpc enable "DigiHug USB Audio" && mpc disable "My Pulse Output" + +set -e + +systemctl --user stop pulseaudio.socket +mpc enable "DigiHug USB Audio" +mpc disable "My Pulse Output" diff --git a/bin/executable_mpd_others.sh b/bin/executable_mpd_others.sh index 1d832de..b27e11e 100755 --- a/bin/executable_mpd_others.sh +++ b/bin/executable_mpd_others.sh @@ -1,4 +1,9 @@ #!/bin/sh + +set -e + +systemctl --user start pulseaudio.socket +systemctl --user start pulseaudio.service mpc disable "DigiHug USB Audio" mpc enable "My Pulse Output" pacmd load-module module-udev-detect |