install.sh: add info when user.js symlinking fails, close #99

This commit is contained in:
Rafael Mardojai CM 2020-06-14 21:28:25 -05:00
parent 16765d133d
commit 8bbbccc51e
1 changed files with 4 additions and 1 deletions

5
scripts/install.sh Normal file → Executable file
View File

@ -61,7 +61,10 @@ if [ "$GNOMISHEXTRAS" = true ] ; then
fi
# Symlink user.js to firefox-gnome-theme one.
echo "Set configuration user.js file"
ln -s chrome/firefox-gnome-theme/configuration/user.js ../user.js
if ! ln -s chrome/firefox-gnome-theme/configuration/user.js ../user.js ; then
echo "Please, manually copy theme's user.js contents to yours."
fi
echo "Done."