mirror of
https://github.com/brain-hackers/brain-config.git
synced 2024-12-22 20:20:06 +09:00
Add function to determine whether PulseAudio is in use
This commit is contained in:
parent
e589e7cde6
commit
78a0a8b916
@ -83,6 +83,12 @@ is_fkms() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
is_pulseaudio() {
|
||||||
|
PS=$(ps ax)
|
||||||
|
echo "$PS" | grep -q pulseaudio
|
||||||
|
return $?
|
||||||
|
}
|
||||||
|
|
||||||
is_installed() {
|
is_installed() {
|
||||||
if [ "$(dpkg -l "$1" 2> /dev/null | tail -n 1 | cut -d ' ' -f 1)" != "ii" ]; then
|
if [ "$(dpkg -l "$1" 2> /dev/null | tail -n 1 | cut -d ' ' -f 1)" != "ii" ]; then
|
||||||
return 1
|
return 1
|
||||||
|
Loading…
Reference in New Issue
Block a user