restore fonts from correct path

This commit is contained in:
Shihaam Abdul Rahman 2023-01-09 20:31:35 +05:00
parent 992987fb3c
commit c84e170e4f
Signed by: shihaam
GPG Key ID: 6DA2E87EBC227636

View File

@ -55,6 +55,6 @@ read -p "Would you like to restore fonts [Y/n]: " FONTS
if [ "$FONTS" = "Y" ] || [ "$FONTS" = "y" ] || [ "$FONTS" = "" ] if [ "$FONTS" = "Y" ] || [ "$FONTS" = "y" ] || [ "$FONTS" = "" ]
then then
mkdir -vp $HOME/.local/share/fonts mkdir -vp $HOME/.local/share/fonts
ln -s local/share/fonts/* $HOME/.local/share/fonts/ ln -s $PWD/local/share/fonts/* $HOME/.local/share/fonts/
fi fi
################################################################### ###################################################################