From e33c3c9de734c6b990a7fb1b83cf3f07d7068de8 Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Tue, 14 Jan 2014 12:41:44 +0100 Subject: [PATCH] stop trying to start pulseaudio if not available --- .bash_profile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.bash_profile b/.bash_profile index 0205dd1..f21fbdf 100644 --- a/.bash_profile +++ b/.bash_profile @@ -4,4 +4,6 @@ [[ -f ~/.bashrc ]] && . ~/.bashrc -pulseaudio --start +if hash pulseaudio 2>/dev/null; then + pulseaudio --start +fi