diff --git a/scripts/Arch/Software/xone/install.sh b/scripts/Arch/Software/xone/install.sh index 71ab7787..fe3d4174 100755 --- a/scripts/Arch/Software/xone/install.sh +++ b/scripts/Arch/Software/xone/install.sh @@ -3,11 +3,12 @@ sudo pacman --noconfirm -Syu cabextract; contextRoot="$(mktemp -d)"; +repo="https://github.com/manuth/xone.git"; pushd "$contextRoot" > /dev/null; if lsmod | grep xone > /dev/null; then - git clone "https://github.com/dlundqvist/xone.git" "$contextRoot"; + git clone "$repo" "$contextRoot"; sudo "$contextRoot/install.sh" --release; yes "" | sudo xone-get-firmware.sh; fi;