#!/bin/sh set -e gh_repo="papirus-icon-theme" gh_desc="Papirus icon theme GTK" cat <<- EOF ppppp ii pp pp aaaaa ppppp rr rrr uu uu sssss ppppp aa aa pp pp ii rrrr uu uu ssss pp aa aa pp pp ii rr uu uu ssss pp aaaaa ppppp ii rr uuuuu sssss pp pp $gh_desc https://github.com/PapirusDevelopmentTeam/$gh_repo EOF temp_dir=$(mktemp -d) echo "=> Getting the latest version from GitHub ..." wget -O "/tmp/$gh_repo.tar.gz" \ https://github.com/PapirusDevelopmentTeam/$gh_repo/archive/master.tar.gz echo "=> Unpacking archive ..." tar -xzf "/tmp/$gh_repo.tar.gz" -C "$temp_dir" echo "=> Deleting old $gh_desc ..." rm -rf ~/.icons/ePapirus rm -rf ~/.icons/Papirus rm -rf ~/.icons/Papirus-Dark rm -rf ~/.icons/Papirus-Light echo "=> Installing ..." mkdir -p ~/.icons cp --no-preserve=mode,ownership -r \ "$temp_dir/$gh_repo-master/ePapirus" \ "$temp_dir/$gh_repo-master/Papirus" \ "$temp_dir/$gh_repo-master/Papirus-Dark" \ "$temp_dir/$gh_repo-master/Papirus-Light" ~/.icons/ gtk-update-icon-cache -q ~/.icons/ePapirus || true gtk-update-icon-cache -q ~/.icons/Papirus || true gtk-update-icon-cache -q ~/.icons/Papirus-Dark || true gtk-update-icon-cache -q ~/.icons/Papirus-Light || true echo "=> Clearing cache ..." rm -rf "/tmp/$gh_repo.tar.gz" "$temp_dir" echo "=> Done!"