Fix font installation

This commit is contained in:
Manuel Thalmann 2022-11-14 22:22:50 +01:00
parent f581a171de
commit 7bb1dd4882

View file

@ -5,5 +5,10 @@ then
sudo bash "$BASH_SOURCE" "$USER"
else
homeDir=$(sudo -u $1 bash -c 'realpath ~')
cp "$homeDir/Nextcloud/Caskaydia Cove Regular Nerd Font Complete.otf" /usr/share/font/opentype
fontFileBaseName="Caskaydia Cove Regular Nerd Font Complete.otf"
tempFile=$(sudo -u $1 mktemp -d)/$fontFileBaseName
destination=/usr/share/font/opentype
sudo -u $1 cp "$homeDir/Nextcloud/Caskaydia Cove Regular Nerd Font Complete.otf" "$tempFile"
cp "$tempFile" /usr/share/fonts/opentype
fi