From 430d5bde28482bf899eab23e5b39808864251857 Mon Sep 17 00:00:00 2001 From: Frieder Schlesier Date: Mon, 14 Jan 2019 23:28:37 +0100 Subject: [PATCH] add install latex --- scripts/install.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index 838670e..8bdc98f 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -158,6 +158,21 @@ install_nvidia_docker() { 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() { echo "update and installing i3wm and some tools..." @@ -191,6 +206,10 @@ install_i3() { i3lock-fancy \ i3status \ keepassxc \ + libreoffice-calc \ + libreoffice-impress \ + libreoffice-l10n-de \ + libreoffice-l10n-en-gb \ network-manager-gnome \ ntfs-3g \ pulseaudio \ @@ -443,6 +462,9 @@ main() { source get_private_stuff.sh fi ;; + latex) + install_latex + ;; update-docker) # install_docker install_compose