2022-11-12 13:45:03 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Elevate script
|
|
|
|
if [ ! "$UID" -eq 0 ]
|
|
|
|
then
|
2023-01-23 14:55:10 +00:00
|
|
|
sudo bash "$BASH_SOURCE" "$USER";
|
2022-11-13 00:11:32 +00:00
|
|
|
else
|
2023-01-23 15:11:51 +00:00
|
|
|
homeDir="$(sudo -u "$1" bash -c 'realpath ~')";
|
2023-01-23 14:55:10 +00:00
|
|
|
fontFileBaseName="Caskaydia Cove Regular Nerd Font Complete.otf";
|
2023-01-23 15:11:51 +00:00
|
|
|
tempFile="$(sudo -u "$1" mktemp -d)/$fontFileBaseName";
|
2023-01-23 14:55:10 +00:00
|
|
|
destination=/usr/share/font/opentype;
|
2022-11-14 21:22:50 +00:00
|
|
|
|
2023-01-23 15:11:51 +00:00
|
|
|
sudo -u "$1" cp "$homeDir/Nextcloud/Caskaydia Cove Regular Nerd Font Complete.otf" "$tempFile";
|
2023-01-23 14:55:10 +00:00
|
|
|
cp "$tempFile" /usr/share/fonts/opentype;
|
2022-11-12 13:45:03 +00:00
|
|
|
fi
|