16 lines
312 B
Bash
Executable file
16 lines
312 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Setup Audio Drivers
|
|
if [[ $1 == "Debian" ]]; then
|
|
if [[ $2 == "pipewire" ]]; then
|
|
echo "apt-get -y install pipewire-audio"
|
|
fi
|
|
if [[ $2 == "pulseaudio" ]]; then
|
|
echo "Skipping: No further action required"
|
|
fi
|
|
fi
|
|
|
|
if [[ $1 == "Arch" ]]; then
|
|
echo "audio setup"
|
|
fi
|