xovi guide

Requirements

What is curl?

From wikipedia (cURL):

cURL is a free and open source CLI app for uploading and downloading individual files.

curl is used to download extensions (mostly from GitHub), as the built-in wget (also for downloading files) cannot download files from GitHub on versions older than 3.20

Setup variables

For rM1/2:

curl_arch=armv7 && curl_sha256sum=779a1bd9f486fd5ff1da25d5e5bb99c58bc79ded22344f2b7ff366cf645a6630

For Paper Pro/Move:

curl_arch=aarch64 && curl_sha256sum=1b050abd1669f9a2ac29b34eb022cdeafb271dce5a4fb57d8ef8fadff6d7be1f

Install curl

Download, verify, and allow execution:

wget -O curl --no-check-certificate https://ghproxy.net/https://github.com/moparisthebest/static-curl/releases/download/v8.11.0/curl-$curl_arch && echo "$curl_sha256sum curl" | sha256sum -c && chmod +x curl

Output should end with curl: OK

Next steps

Notes