add install latex

This commit is contained in:
Frieder Schlesier 2019-01-14 23:28:37 +01:00
parent 42515e757a
commit 430d5bde28
1 changed files with 22 additions and 0 deletions

View File

@ -158,6 +158,21 @@ install_nvidia_docker() {
sudo pkill -SIGHUP dockerd sudo pkill -SIGHUP dockerd
} }
install_latex() {
apt update
apt install -y \
evince \
texlive \
texlive-bibtex-extra \
texlive-lang-english \
texlive-lang-german \
texlive-latex-extra \
texlive-latex-recommended \
texlive-pictures \
--no-install-recommends
}
install_i3() { install_i3() {
echo "update and installing i3wm and some tools..." echo "update and installing i3wm and some tools..."
@ -191,6 +206,10 @@ install_i3() {
i3lock-fancy \ i3lock-fancy \
i3status \ i3status \
keepassxc \ keepassxc \
libreoffice-calc \
libreoffice-impress \
libreoffice-l10n-de \
libreoffice-l10n-en-gb \
network-manager-gnome \ network-manager-gnome \
ntfs-3g \ ntfs-3g \
pulseaudio \ pulseaudio \
@ -443,6 +462,9 @@ main() {
source get_private_stuff.sh source get_private_stuff.sh
fi fi
;; ;;
latex)
install_latex
;;
update-docker) update-docker)
# install_docker # install_docker
install_compose install_compose