diff --git a/templates/logen/logen.sh b/templates/logen/logen.sh new file mode 100755 index 0000000..71a2cda --- /dev/null +++ b/templates/logen/logen.sh @@ -0,0 +1,17 @@ +#!/bin/bash +echo "=========================" +echo "| LOGEN VOID |" +echo " ------------------------" +CURRENT=https://repo.voidlinux.eu/current +NONFREE=https://repo.voidlinux.eu/current/nonfree +MULTILIB=https://repo.voidlinux.eu/current/multilib + + + +./mklive.sh \ + -r ${CURRENT} \ + -r ${NONFREE} \ + -r ${MULTILIB} \ + -p "$(grep '^[^#].' logen.packages)" \ + -T "Logen Void" \ + -o logen-void-build_1-live-x86_64-xfce4-4.14.22.iso \ No newline at end of file diff --git a/templates/plasma/plasma-void.sh b/templates/plasma/plasma-void.sh new file mode 100755 index 0000000..226561f --- /dev/null +++ b/templates/plasma/plasma-void.sh @@ -0,0 +1,29 @@ +#!/bin/bash +echo "=========================" +echo "| VOID PLASMA |" +echo " ------------------------" + +# Grub Splash +SPLASH=splash.png + +# Image File Output +DATE=$(date +%Y%m%d) +FILENAME="plasma-void" +shift $((OPTIND - 1)) + +: ${ARCH:=$(uname -m)} + +CURRENT=https://repo.voidlinux.eu/current +NONFREE=https://repo.voidlinux.eu/current/nonfree +MULTILIB=https://repo.voidlinux.eu/current/multilib + +cp ${SPLASH} ../../data + +./mklive.sh \ + -a ${ARCH} \ + -r ${CURRENT} \ + -r ${NONFREE} \ + -r ${MULTILIB} \ + -p "$(grep '^[^#].' plasma.packages)" \ + -T "Plasma Void Alpha3" \ + -o ${FILENAME}-${ARCH}-live-${DATE}.iso