forked from ChrisTitusTech/ArchMatic
-
Notifications
You must be signed in to change notification settings - Fork 6
/
3-software-aur.sh
executable file
·61 lines (42 loc) · 1.55 KB
/
3-software-aur.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
55
56
57
58
59
60
61
#!/usr/bin/env bash
#-------------------------------------------------------------------------
# _ _ __ __ _ _
# /_\ _ _ __| |_ | \/ |__ _| |_(_)__
# / _ \| '_/ _| ' \| |\/| / _` | _| / _|
# /_/ \_\_| \__|_||_|_| |_\__,_|\__|_\__|
# Arch Linux Post Install Setup and Config
#-------------------------------------------------------------------------
echo
echo "INSTALLING AUR SOFTWARE"
echo
echo "Please enter username:"
read username
cd "${HOME}"
echo "CLONING: YAY"
git clone "https://aur.archlinux.org/yay.git"
PKGS=(
# UTILITIES -----------------------------------------------------------
'i3lock-fancy' # Screen locker
'timeshift' # Backup and Restore
# COMMUNICATIONS ------------------------------------------------------
'brave-bin' # Brave
# THEMES --------------------------------------------------------------
'lightdm-webkit-theme-aether' # Lightdm Login Theme - https://github.com/NoiSek/Aether#installation
'materia-gtk-theme' # Desktop Theme
'papirus-icon-theme' # Desktop Icons
'capitaine-cursors' # Cursor Icons
'autojump' # Zsh plugin
# APPS ----------------------------------------------------------------
'discord' # Chat for gamers
'youtubemusic-nativefier' # Music
)
cd ${HOME}/yay
makepkg -si
# Change default shell
chsh -s $(which zsh)
for PKG in "${PKGS[@]}"; do
yay -S --noconfirm $PKG
done
echo
echo "Done!"
echo