Compare commits

...

2 Commits

Author SHA1 Message Date
Icedream 92607772de
Remove PulseAudio code entirely. 2018-02-20 03:41:16 +01:00
Icedream f499e09e43
Pipe ssh-agent output to debug log. 2018-02-20 03:40:20 +01:00
1 changed files with 3 additions and 10 deletions

View File

@ -248,20 +248,13 @@ 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)"
eval "$(ssh-agent -s)" | while IFS= read -r line; do
log "$line"
done
fi
fi
section_end