├── .gitignore ├── DIY.md ├── LICENSE ├── README.md ├── docs ├── README.md ├── fixTimezone.md ├── flashing.md ├── installAccelerometer.md ├── officialInstructions │ ├── README.md │ ├── Sonic Pad Firmware Burning Tutorial _Windows_V1.1.pdf │ ├── Sonic Pad Firmware Burning Tutorial_MacOS_V1.3.pdf │ └── Sonic Pad Firmware Burning Tutorial_Ubuntu_V1.1.pdf └── tools │ ├── PhoenixSuit_MacOS_T800.zip │ ├── PhoenixSuit_Windows_V1.10.zip │ └── README.md └── src ├── .config ├── archives └── kernel_tools.tar.gz ├── base_rootfs ├── etc │ ├── NetworkManager │ │ └── conf.d │ │ │ ├── 99-unmanaged-devices.conf │ │ │ └── any_user.conf │ ├── fstab │ ├── fw_env.config │ ├── hostname │ ├── modules │ ├── modules-load.d │ │ └── modules.conf │ ├── pip.conf │ ├── systemd │ │ └── system │ │ │ ├── depmod_boot.service │ │ │ ├── display-sleep.service │ │ │ ├── expandfs.service │ │ │ ├── ledmmc.service │ │ │ └── usbhost.service │ └── wifi │ │ └── xr_wifi.conf ├── lib │ ├── firmware │ │ ├── boot_xr819.bin │ │ ├── boot_xr829.bin │ │ ├── etf_xr819.bin │ │ ├── etf_xr829.bin │ │ ├── fw_xr819.bin │ │ ├── fw_xr829.bin │ │ ├── fw_xr829_bt.bin │ │ ├── rgx.fw.22.102.54.38 │ │ ├── sdd_xr819.bin │ │ └── sdd_xr829.bin │ └── modules │ │ └── 4.9.191 │ │ ├── dc_sunxi.ko │ │ ├── exfat.ko │ │ ├── fuse.ko │ │ ├── modules.alias │ │ ├── modules.alias.bin │ │ ├── modules.builtin.alias.bin │ │ ├── modules.builtin.bin │ │ ├── modules.dep │ │ ├── modules.dep.bin │ │ ├── modules.devname │ │ ├── modules.softdep │ │ ├── modules.symbols │ │ ├── modules.symbols.bin │ │ ├── pvrsrvkm.ko │ │ ├── xr819_core.ko │ │ ├── xr819_mac.ko │ │ └── xr819_wlan.ko └── usr │ └── local │ └── bin │ ├── depmod_enable.sh │ ├── display-sleep.sh │ ├── expandfs_enable.sh │ ├── ledmmc_enable.sh │ └── usbhost_enable.sh ├── build.sh ├── create_release.sh ├── create_rootfs.sh ├── pack_img.sh ├── scripts ├── install_klipper.sh ├── install_klipperscreen.sh ├── install_moonraker.sh ├── install_services.sh ├── klipper.config ├── klipperscreen.config ├── moonraker.config └── resources │ ├── KlipperScreen_install-no-start.sh │ ├── brightness │ ├── brightness.c │ └── sunxi_display_v2.h │ ├── example.printer.cfg │ ├── klipper.env │ ├── klipper.service │ ├── moonraker.conf │ ├── moonraker.env │ ├── moonraker.service │ └── xorg.conf └── spinner.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/.gitignore -------------------------------------------------------------------------------- /DIY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/DIY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/fixTimezone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/docs/fixTimezone.md -------------------------------------------------------------------------------- /docs/flashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/docs/flashing.md -------------------------------------------------------------------------------- /docs/installAccelerometer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/docs/installAccelerometer.md -------------------------------------------------------------------------------- /docs/officialInstructions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/docs/officialInstructions/README.md -------------------------------------------------------------------------------- /docs/officialInstructions/Sonic Pad Firmware Burning Tutorial _Windows_V1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/docs/officialInstructions/Sonic Pad Firmware Burning Tutorial _Windows_V1.1.pdf -------------------------------------------------------------------------------- /docs/officialInstructions/Sonic Pad Firmware Burning Tutorial_MacOS_V1.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/docs/officialInstructions/Sonic Pad Firmware Burning Tutorial_MacOS_V1.3.pdf -------------------------------------------------------------------------------- /docs/officialInstructions/Sonic Pad Firmware Burning Tutorial_Ubuntu_V1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/docs/officialInstructions/Sonic Pad Firmware Burning Tutorial_Ubuntu_V1.1.pdf -------------------------------------------------------------------------------- /docs/tools/PhoenixSuit_MacOS_T800.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/docs/tools/PhoenixSuit_MacOS_T800.zip -------------------------------------------------------------------------------- /docs/tools/PhoenixSuit_Windows_V1.10.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/docs/tools/PhoenixSuit_Windows_V1.10.zip -------------------------------------------------------------------------------- /docs/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/docs/tools/README.md -------------------------------------------------------------------------------- /src/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/.config -------------------------------------------------------------------------------- /src/archives/kernel_tools.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/archives/kernel_tools.tar.gz -------------------------------------------------------------------------------- /src/base_rootfs/etc/NetworkManager/conf.d/99-unmanaged-devices.conf: -------------------------------------------------------------------------------- 1 | [keyfile] 2 | unmanaged-devices=interface-name:p2p0 -------------------------------------------------------------------------------- /src/base_rootfs/etc/NetworkManager/conf.d/any_user.conf: -------------------------------------------------------------------------------- 1 | [main] 2 | auth-polkit=false -------------------------------------------------------------------------------- /src/base_rootfs/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/etc/fstab -------------------------------------------------------------------------------- /src/base_rootfs/etc/fw_env.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/etc/fw_env.config -------------------------------------------------------------------------------- /src/base_rootfs/etc/hostname: -------------------------------------------------------------------------------- 1 | SonicPad -------------------------------------------------------------------------------- /src/base_rootfs/etc/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/etc/modules -------------------------------------------------------------------------------- /src/base_rootfs/etc/modules-load.d/modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/etc/modules-load.d/modules.conf -------------------------------------------------------------------------------- /src/base_rootfs/etc/pip.conf: -------------------------------------------------------------------------------- 1 | [global] 2 | extra-index-url=https://www.piwheels.org/simple -------------------------------------------------------------------------------- /src/base_rootfs/etc/systemd/system/depmod_boot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/etc/systemd/system/depmod_boot.service -------------------------------------------------------------------------------- /src/base_rootfs/etc/systemd/system/display-sleep.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/etc/systemd/system/display-sleep.service -------------------------------------------------------------------------------- /src/base_rootfs/etc/systemd/system/expandfs.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/etc/systemd/system/expandfs.service -------------------------------------------------------------------------------- /src/base_rootfs/etc/systemd/system/ledmmc.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/etc/systemd/system/ledmmc.service -------------------------------------------------------------------------------- /src/base_rootfs/etc/systemd/system/usbhost.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/etc/systemd/system/usbhost.service -------------------------------------------------------------------------------- /src/base_rootfs/etc/wifi/xr_wifi.conf: -------------------------------------------------------------------------------- 1 | FC:EE:92:11:14:05 -------------------------------------------------------------------------------- /src/base_rootfs/lib/firmware/boot_xr819.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/firmware/boot_xr819.bin -------------------------------------------------------------------------------- /src/base_rootfs/lib/firmware/boot_xr829.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/firmware/boot_xr829.bin -------------------------------------------------------------------------------- /src/base_rootfs/lib/firmware/etf_xr819.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/firmware/etf_xr819.bin -------------------------------------------------------------------------------- /src/base_rootfs/lib/firmware/etf_xr829.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/firmware/etf_xr829.bin -------------------------------------------------------------------------------- /src/base_rootfs/lib/firmware/fw_xr819.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/firmware/fw_xr819.bin -------------------------------------------------------------------------------- /src/base_rootfs/lib/firmware/fw_xr829.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/firmware/fw_xr829.bin -------------------------------------------------------------------------------- /src/base_rootfs/lib/firmware/fw_xr829_bt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/firmware/fw_xr829_bt.bin -------------------------------------------------------------------------------- /src/base_rootfs/lib/firmware/rgx.fw.22.102.54.38: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/firmware/rgx.fw.22.102.54.38 -------------------------------------------------------------------------------- /src/base_rootfs/lib/firmware/sdd_xr819.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/firmware/sdd_xr819.bin -------------------------------------------------------------------------------- /src/base_rootfs/lib/firmware/sdd_xr829.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/firmware/sdd_xr829.bin -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/dc_sunxi.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/dc_sunxi.ko -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/exfat.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/exfat.ko -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/fuse.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/fuse.ko -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/modules.alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/modules.alias -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/modules.alias.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/modules.alias.bin -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/modules.builtin.alias.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/modules.builtin.alias.bin -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/modules.builtin.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/modules.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/modules.dep -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/modules.dep.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/modules.dep.bin -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/modules.devname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/modules.devname -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/modules.softdep: -------------------------------------------------------------------------------- 1 | # Soft dependencies extracted from modules themselves. 2 | -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/modules.symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/modules.symbols -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/modules.symbols.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/modules.symbols.bin -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/pvrsrvkm.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/pvrsrvkm.ko -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/xr819_core.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/xr819_core.ko -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/xr819_mac.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/xr819_mac.ko -------------------------------------------------------------------------------- /src/base_rootfs/lib/modules/4.9.191/xr819_wlan.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/lib/modules/4.9.191/xr819_wlan.ko -------------------------------------------------------------------------------- /src/base_rootfs/usr/local/bin/depmod_enable.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | depmod -------------------------------------------------------------------------------- /src/base_rootfs/usr/local/bin/display-sleep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/usr/local/bin/display-sleep.sh -------------------------------------------------------------------------------- /src/base_rootfs/usr/local/bin/expandfs_enable.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | resize2fs /dev/mmcblk0p5 4 | 5 | systemctl disable expandfs -------------------------------------------------------------------------------- /src/base_rootfs/usr/local/bin/ledmmc_enable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/usr/local/bin/ledmmc_enable.sh -------------------------------------------------------------------------------- /src/base_rootfs/usr/local/bin/usbhost_enable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/base_rootfs/usr/local/bin/usbhost_enable.sh -------------------------------------------------------------------------------- /src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/build.sh -------------------------------------------------------------------------------- /src/create_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/create_release.sh -------------------------------------------------------------------------------- /src/create_rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/create_rootfs.sh -------------------------------------------------------------------------------- /src/pack_img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/pack_img.sh -------------------------------------------------------------------------------- /src/scripts/install_klipper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/install_klipper.sh -------------------------------------------------------------------------------- /src/scripts/install_klipperscreen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/install_klipperscreen.sh -------------------------------------------------------------------------------- /src/scripts/install_moonraker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/install_moonraker.sh -------------------------------------------------------------------------------- /src/scripts/install_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/install_services.sh -------------------------------------------------------------------------------- /src/scripts/klipper.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/klipper.config -------------------------------------------------------------------------------- /src/scripts/klipperscreen.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/klipperscreen.config -------------------------------------------------------------------------------- /src/scripts/moonraker.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/moonraker.config -------------------------------------------------------------------------------- /src/scripts/resources/KlipperScreen_install-no-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/resources/KlipperScreen_install-no-start.sh -------------------------------------------------------------------------------- /src/scripts/resources/brightness/brightness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/resources/brightness/brightness.c -------------------------------------------------------------------------------- /src/scripts/resources/brightness/sunxi_display_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/resources/brightness/sunxi_display_v2.h -------------------------------------------------------------------------------- /src/scripts/resources/example.printer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/resources/example.printer.cfg -------------------------------------------------------------------------------- /src/scripts/resources/klipper.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/resources/klipper.env -------------------------------------------------------------------------------- /src/scripts/resources/klipper.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/resources/klipper.service -------------------------------------------------------------------------------- /src/scripts/resources/moonraker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/resources/moonraker.conf -------------------------------------------------------------------------------- /src/scripts/resources/moonraker.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/resources/moonraker.env -------------------------------------------------------------------------------- /src/scripts/resources/moonraker.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/resources/moonraker.service -------------------------------------------------------------------------------- /src/scripts/resources/xorg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/scripts/resources/xorg.conf -------------------------------------------------------------------------------- /src/spinner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpe230/SonicPad-Debian/HEAD/src/spinner.sh --------------------------------------------------------------------------------