2022-05-17 21:18:54 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-05-17 21:42:54 +02:00
|
|
|
echo "Install necessary fonts ..."
|
|
|
|
apt-get install fonts-yanone-kaffeesatz fonts-sil-andikanewbasic fonts-firacode > /dev/null
|
|
|
|
|
2022-05-17 21:29:18 +02:00
|
|
|
path=/usr/local/share/texmf/tex/latex/beamerthemeNik/
|
2022-05-17 21:18:54 +02:00
|
|
|
|
2022-05-17 21:42:54 +02:00
|
|
|
echo -e "\nCreating necessary path $path ..."
|
|
|
|
mkdir -p $path
|
2022-05-17 21:29:18 +02:00
|
|
|
|
2022-05-17 21:42:54 +02:00
|
|
|
echo -e "\nCopying .sty-Files ..."
|
|
|
|
cp ./beamercolorthemeNik.sty $path
|
|
|
|
cp ./beamerfontthemeNik.sty $path
|
|
|
|
cp ./beamerthemeNik.sty $path
|
2022-05-17 21:29:18 +02:00
|
|
|
|
2022-05-17 21:42:54 +02:00
|
|
|
echo -e "\nRefreshing TeX Database ..."
|
|
|
|
texhash > /dev/null
|