diff --git a/apps/USBImager/description b/apps/USBImager/description new file mode 100644 index 0000000..d503929 --- /dev/null +++ b/apps/USBImager/description @@ -0,0 +1,4 @@ +A very minimal GUI app that can write compressed disk images to USB drives +USBImager is a very useful and minimal app that works like etcher and RaspberryPi imager but needs less resources, (it's less then 400kb). + +to run from terminal, type: usbimager. diff --git a/apps/USBImager/icon-24.png b/apps/USBImager/icon-24.png new file mode 100644 index 0000000..e309605 Binary files /dev/null and b/apps/USBImager/icon-24.png differ diff --git a/apps/USBImager/icon-64.png b/apps/USBImager/icon-64.png new file mode 100644 index 0000000..8730b2f Binary files /dev/null and b/apps/USBImager/icon-64.png differ diff --git a/apps/USBImager/install-32 b/apps/USBImager/install-32 new file mode 100755 index 0000000..1188391 --- /dev/null +++ b/apps/USBImager/install-32 @@ -0,0 +1,15 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + + +cd Downloads || error 'Failed to change directory!' +wget https://gitlab.com/bztsrc/usbimager/-/raw/binaries/usbimager_1.0.5-armhf.deb || error 'Failed to Download usbimager_1.0.5-armhf.deb!' +sudo dpkg -i usbimager_1.0.5-armhf.deb || error 'Failed to install usbimager_1.0.5-armhf.deb!' +rm usbimager_1.0.5-armhf.deb + diff --git a/apps/USBImager/install-64 b/apps/USBImager/install-64 new file mode 100755 index 0000000..e2197dd --- /dev/null +++ b/apps/USBImager/install-64 @@ -0,0 +1,17 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +cd ~/Downloads || error "Failed to change directory to /home/pi!" +git clone https://gitlab.com/bztsrc/usbimager.git +cd usbimager/src/ +make deb +cd .. +sudo dpkg -i usbimager_1.0.5-arm64.deb +cd .. +rm -rf usbimager diff --git a/apps/USBImager/uninstall b/apps/USBImager/uninstall new file mode 100755 index 0000000..22659a4 --- /dev/null +++ b/apps/USBImager/uninstall @@ -0,0 +1,11 @@ +#!/bin/bash + +DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")" + +function error { + echo -e "\\e[91m$1\\e[39m" + exit 1 +} + +sudo apt purge usbimager -y || error 'Failed to uninstall USBImager!' + diff --git a/apps/USBImager/website b/apps/USBImager/website new file mode 100644 index 0000000..ba1bbe2 --- /dev/null +++ b/apps/USBImager/website @@ -0,0 +1 @@ +https://gitlab.com/bztsrc/usbimager/