From e27094304a2f6bd0f8f3d5e13c47865747c882a1 Mon Sep 17 00:00:00 2001 From: kittenlikeasmallcat Date: Sat, 30 Aug 2025 23:18:23 +0000 Subject: [PATCH] Delete update-librewolf.sh --- update-librewolf.sh | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 update-librewolf.sh diff --git a/update-librewolf.sh b/update-librewolf.sh deleted file mode 100644 index a949573..0000000 --- a/update-librewolf.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -ZENITY_OPTIONS="--icon $HOME/.local/share/icons/librewolf.png --title LibreWolf AppImage" -APPIMAGE="/home/ktn/.local/bin/LibreWolf.x86_64.AppImage" - -zenity --question $ZENITY_OPTIONS --no-wrap --text "Update now?" && - -if stat $APPIMAGE -then -mv $APPIMAGE $APPIMAGE.old && -wcurl -O $APPIMAGE https://gitlab.com/api/v4/projects/24386000/packages/generic/librewolf/latest/LibreWolf.x86_64.AppImage |zenity --progress $ZENITY_OPTIONS --auto-close --auto-kill --text "Downloading using wcurl..." --pulsate && -chmod +x $APPIMAGE & touch $HOME/.cache/snooze/wolfupdate -else -wcurl -O $APPIMAGE https://gitlab.com/api/v4/projects/24386000/packages/generic/librewolf/latest/LibreWolf.x86_64.AppImage |zenity --progress $ZENITY_OPTIONS --auto-close --auto-kill --text "Downloading using wcurl..." --pulsate && -chmod +x $APPIMAGE & touch $HOME/.cache/snooze/wolfupdate -fi && - -zenity --info $ZENITY_OPTIONS --no-wrap --text "LibreWolf has been updated!"