9 lines
284 B
Bash
9 lines
284 B
Bash
|
#!/usr/bin/env bash
|
||
|
if grep -q "Shyvana" /sys/devices/virtual/dmi/id/product_name; then
|
||
|
cd /tmp/
|
||
|
git clone https://github.com/WeirdTreeThing/chromebook-linux-audio --depth 1
|
||
|
cd ./chromebook-linux-audio/
|
||
|
./setup-audio
|
||
|
cd -
|
||
|
rm -rf /tmp/chromebook-linux-audio/
|
||
|
fi
|