-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
archlinux.sh
54 lines (52 loc) · 1.27 KB
/
archlinux.sh
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
#!/bin/bash
go get github.com/Jguer/yay
packages=(
alsa-utils # audio mixer
arandr # graphical screen manamgement
autojump # jump
compton # compositing
cups # printer
dunst # notifications
fd # find
feh # image display
flameshot # screenshot
flatpak # apps
git
graphviz
gtk-chtheme # gtk theming
arc-gtk-theme # arc theme
i3-gaps
i3blocks-gaps-git
jack2 # audio
jq
lxappearance # gtk themeing
neovim
pandoc
pavucontrol # audio control
playerctl # receive media controls
pulseaudio # audio
pulseaudio-alsa
pulseaudio-jack
python2-lxml
python2-scour
qjackctl
rofi # app runner
speedcrunch # calculator
termite # terminal
the_silver_searcher
thunar # file manager
thunar-volman
tmux
tree
ttf-inconsolata-g
ttf-meslo
ttf-monaco
xclip
zathura # pdf viewer
zathura-pdf-poppler # pdf pluggin
ksh
zsh
)
for package in "${packages[@]}"; do
yay -S --noconfirm "${package}"
done