PortValhalla/scripts/Arch/Software/xone/install.sh

7 lines
208 B
Bash
Raw Normal View History

2023-07-27 19:24:09 +00:00
#!/bin/bash
contextRoot="$(mktemp -d)";
git clone "https://github.com/dlundqvist/xone.git" "$contextRoot";
sudo "$contextRoot/install.sh" --release;
yes "" | sudo xone-get-firmware.sh;
2023-08-07 15:17:57 +00:00
rm -rf "$contextRoot";