Update ros-progs-gui.sh
This commit is contained in:
parent
53bb6da3c9
commit
d36eaede1f
1 changed files with 10 additions and 0 deletions
|
@ -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}
|
||||
|
|
Loading…
Reference in a new issue