From c1873b34bf5210ec87c59e206119de02c8d98fd4 Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Sat, 8 Aug 2026 22:00:57 +0200 Subject: [PATCH] Add installation script for AM - AppImage Manager This commit adds a script to install AM, the AppImage Manager, using a curl command to download and execute the installer. The script ensures proper cleanup by removing the installer after execution. --- 03-install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/03-install.sh b/03-install.sh index 8e851c5..e90e039 100755 --- a/03-install.sh +++ b/03-install.sh @@ -101,3 +101,6 @@ curl -sL https://raw.githubusercontent.com/wimpysworld/deb-get/main/deb-get | su # topgrade sudo deb-get install topgrade + +# AM - AppImage - Application Manager +curl -s -Lo ./AM-INSTALLER https://raw.githubusercontent.com/ivan-hc/AM/main/AM-INSTALLER && chmod a+x ./AM-INSTALLER && ./AM-INSTALLER && rm ./AM-INSTALLER