-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxinstalar.sh
More file actions
239 lines (235 loc) · 2.68 KB
/
xinstalar.sh
File metadata and controls
239 lines (235 loc) · 2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
#!/bin/bash
# INSTALAR PAQUETES NECESARIO PARA ARCH + XFCE4
setfont ter-v22n
funcion_instalar() {
if pacman -Qi $1 &> /dev/null; then
else sudo pacman -S --noconfirm --needed $1
fi
}
lista=(
alsa-utils
amd-ucode
arch-install-scripts
archinstall
accountsservice
autoconf
automake
b43-fwcutter
base
bind
blueberry
bluez
bluez-utils
brltty
broadcom-wl
btrfs-progs
clonezilla
cloud-init
cryptsetup
darkhttpd
ddrescue
dhclient
dhcpcd
diffutils
dmidecode
dmraid
dnsmasq
dosfstools
e2fsprogs
edk2-shell
efibootmgr
espeakup
ethtool
exfatprogs
exo
f2fs-tools
fakeroot
fatresize
firefox-esr
fsarchiver
garcon
gcc
gimp
git
gnu-netcat
gpart
gpm
gptfdisk
grml-zsh-config
grub
gvfs
hdparm
hyperv
intel-ucode
inter-font
irssi
iw
iwd
jfsutils
kitty-terminfo
less
lftp
libfido2
librewolf
libusb-compat
lightdm
lightdm-gtk-greeter
lightdm-gtk-greeter-settings
linux
linux-atm
linux-firmware
linux-firmware-marvell
livecd-sounds
lsscsi
lvm2
lynx
make
man-db
man-pages
mc
mdadm
memtest86+
mkinitcpio
mkinitcpio-nfs-utils
mkinitcpio-openswap
modemmanager
mousepad
mtools
nano
nbd
ndisc6
nfs-utils
nilfs-utils
nmap
ntfs-3g
nvme-cli
open-iscsi
open-vm-tools
openconnect
openssh
openvpn
os-prober
partclone
parted
partimage
pavucontrol
pcsclite
pkgconf
ppp
pptpclient
pv
qemu-guest-agent
refind
reflector
reiserfsprogs
ristretto
rp-pppoe
rsync
rxvt-unicode-terminfo
screen
sdparm
sg3_utils
smartmontools
sof-firmware
sudo
syslinux
systemd-resolvconf
tcpdump
terminus-font
testdisk
thunar
thunar-archive-plugin
thunar-volman
tmux
tpm2-tss
transmission-gtk
tumbler
udftools
unrar
unzip
usb_modeswitch
usbmuxd
usbutils
vim
virtualbox-guest-utils-nox
vlc
vpnc
wireless-regdb
wireless_tools
wpa_supplicant
wvdial
xarchiver
xf86-video-vesa
xfce4-appfinder
xfce4-dev-tools
xfce4-docklike-plugin
xfce4-panel
xfce4-panel-profiles
xfce4-power-manager
xfce4-pulseaudio-plugin
xfce4-session
xfce4-settings
xfce4-terminal
xfconf
xfdesktop
xfsprogs
xfwm4
xfwm4-themes
xl2tpd
xdg-user-dirs
xorg-bdftopcf
xorg-docs
xorg-font-util
xorg-fonts-100dpi
xorg-fonts-75dpi
xorg-fonts-encodings
xorg-iceauth
xorg-mkfontscale
xorg-server
xorg-server-common
xorg-server-devel
xorg-server-xephyr
xorg-server-xnest
xorg-server-xvfb
xorg-sessreg
xorg-setxkbmap
xorg-smproxy
xorg-x11perf
xorg-xauth
xorg-xbacklight
xorg-xcmsdb
xorg-xcursorgen
xorg-xdpyinfo
xorg-xdriinfo
xorg-xev
xorg-xgamma
xorg-xhost
xorg-xinput
xorg-xkbcomp
xorg-xkbevd
xorg-xkbutils
xorg-xkill
xorg-xlsatoms
xorg-xlsclients
xorg-xmodmap
xorg-xpr
xorg-xrandr
xorg-xrdb
xorg-xrefresh
xorg-xsetroot
xorg-xvinfo
xorg-xwayland
xorg-xwd
xorg-xwininfo
xorg-xwud
zip
zsh
zsh-autosuggestions
zsh-completions
zsh-syntax-highlighting
)
count=0
for paquete in "${lista[@]}" ; do
count=$[count+1]
funcion_instalar $paquete
done