8 lines
143 B
Bash
8 lines
143 B
Bash
#!/bin/sh -e
|
|
|
|
if [ $(hostname) == commandante ]
|
|
then
|
|
sed /etc/asound.conf 's^hw:1,0/hw:0,0/g' > /etc/as
|
|
mv /etc/as /etc/asound.conf
|
|
fi
|