dev: automated commit - 2025-07-16 19:26:06

This commit is contained in:
Mariano Z. 2025-07-16 19:26:06 -03:00
parent fb87c567f6
commit 94487551fc
30 changed files with 173 additions and 157 deletions

22
local-bin/.local/bin/nosql.sh Executable file
View file

@ -0,0 +1,22 @@
#!/bin/bash
BINARY_NAME="nosql"
TARGET_DIR="$HOME/.local/bin"
BINARY_PATH="$TARGET_DIR/$BINARY_NAME"
DOWNLOAD_URL="https://s3.nosqlbooster.com/download/releasesv7/nosqlbooster4mongo-7.1.17.AppImage"
if [ ! -x "$BINARY_PATH" ]; then
notify-send "📦 Installing $BINARY_NAME" "Downloading NoSQL Booster..."
mkdir -p "$TARGET_DIR"
wget -q -O "$BINARY_PATH" "$DOWNLOAD_URL" || {
notify-send -u critical "Installation Failed" "Failed to download $BINARY_NAME"
exit 1
}
chmod +x "$BINARY_PATH"
notify-send "Installation Complete" "$BINARY_NAME has been installed successfully"
fi
exec "$BINARY_PATH" "$@"