We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ffbefb commit f131301Copy full SHA for f131301
packages.sh
@@ -3,10 +3,10 @@
3
4
function main() {
5
yay_install
6
- yay_packages
7
devops
8
docker
9
electronics
+ latex
10
}
11
12
function yay_install() {
@@ -124,4 +124,20 @@ function docker() {
124
fi
125
126
127
+function latex() {
128
+ echo "--> Install packages for latex."
129
+ sudo pacman -S --noconfirm --needed \
130
+ texmaker \
131
+ texlive-latexextra \
132
+ texlive-fontsextra \
133
+ texlive-bibtexextra \
134
+ texlive-humanities \
135
+ texlive-langspanish \
136
137
+ texlive-mathscience \
138
+ texlive-pictures \
139
+ texlive-publishers \
140
+ &> /dev/null
141
+}
142
+
143
main "$@"
0 commit comments