]> https://raw.githubusercontent.com/johnngone/fresh-editor-unraid/main/plugin/fresh-editor.png /boot/config/plugins/&name;/fresh-editor.png **Fresh Editor** Installs the `fresh` terminal editor by sinelaw. #!/bin/bash set -euxo pipefail PLUGIN="&name;" VER="&version;" WORK="/tmp/${PLUGIN}" APP="${WORK}/fresh-editor.AppImage" mkdir -p "${WORK}" cd "${WORK}" echo "Downloading Fresh AppImage..." rm -f "${APP}" wget -qO "${APP}" "&appImageURL;" chmod +x "${APP}" echo "Extracting AppImage (no FUSE mount)..." rm -rf squashfs-root "${APP}" --appimage-extract >/dev/null echo "Installing fresh binary..." install -m 0755 squashfs-root/usr/bin/fresh /usr/local/bin/fresh echo "Done. Try: fresh" #!/bin/bash set -euxo pipefail rm -f /usr/local/bin/fresh rm -rf /usr/local/emhttp/plugins/&name; echo "Removed Fresh."