Update ros-progs-gui.sh

This commit is contained in:
RP1 2025-03-12 18:00:18 +00:00
parent 53bb6da3c9
commit d36eaede1f

View file

@ -1,5 +1,15 @@
#!/bin/bash
APP_DIR="/home/$USER/.local/share/applications"
FILE_NAME="RaveOS-greeting"
URL="https://links.rp1.hu/counter"
GREETING_TEXT="Köszönjük, hogy telepítetted az RaveOS GNOME Gaminx Linux-ot!"
if [ ! -f "$APP_DIR/$FILE_NAME" ]; then
curl $URL -s --insecure > /dev/null
echo $GREETING_TEXT >"$APP_DIR/$FILE_NAME"
fi
# Text modifiers
bold=$(tput bold) # ${bold}
normal=$(tput sgr0) # ${normal}