diff --git a/src/main b/src/main index 00339ff..2701267 100755 --- a/src/main +++ b/src/main @@ -1,5 +1,10 @@ #!/bin/bash +## CONSTANTS +## --------- + +GIT_BASE_URL="https://git.artcode.re/pvincent/debian-gnome" + ## FUNCTIONS ## --------- @@ -105,7 +110,7 @@ fi echo "## debian-bash" echo "==============" if [[ ! -d /opt/debian-bash ]]; then - curl https://git.artcode.re/pvincent/debian-bash/raw/branch/master/install.sh | sudo bash -s -- --host + curl "$GIT_BASE_URL/raw/branch/master/install.sh" | sudo bash -s -- --host else echo "debian-bash already installed!" /opt/debian-bash/tools/debian_bash_upgrade @@ -338,6 +343,14 @@ else echo "preserve existing apps!" fi +echo "# libre_re pixmap" +echo "=================" +if [[ ! -f /usr/share/pixmaps/faces/libre_re.png ]]; then + sudo curl -o /usr/share/pixmaps/faces/libre_re.png "$GIT_BASE_URL/raw/branch/master/lib/pixmap/libre_re.png" +else + echo "pixmap already copied!" +fi + echo echo echo "# DEBIAN-GNOME successfully installed!"