add install latex
This commit is contained in:
parent
42515e757a
commit
430d5bde28
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue