Compare commits

..

No commits in common. "92607772dea880527f424291a2dacf5d2efa4257" and "c7d031f270595798c5092a03ac29c384669f9d20" have entirely different histories.

1 changed files with 10 additions and 3 deletions

View File

@ -248,13 +248,20 @@ if [ $PROFILE_IBUS -gt 0 ]; then
fi
section_end
# pulseaudio
section "pulseaudio"
if has_binary pulseaudio && pulseaudio --check; then
log "PulseAudio is active."
else
log "PulseAudio is inactive."
fi
section_end
# SSH agent
section "ssh-agent"
if [ $PROFILE_SSH_AGENT -gt 0 ]; then
if [ -z "$SSH_AUTH_SOCK" ]; then
eval "$(ssh-agent -s)" | while IFS= read -r line; do
log "$line"
done
eval "$(ssh-agent -s)"
fi
fi
section_end