-
Notifications
You must be signed in to change notification settings - Fork 168
/
8-software-aur.sh
executable file
·77 lines (52 loc) · 2.08 KB
/
8-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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env bash
#-------------------------------------------------------------------------
# _ _ __ __ _ _
# /_\ _ _ __| |_ | \/ |__ _| |_(_)__
# / _ \| '_/ _| ' \| |\/| / _` | _| / _|
# /_/ \_\_| \__|_||_|_| |_\__,_|\__|_\__|
# Arch Linux Post Install Setup and Config
#-------------------------------------------------------------------------
echo
echo "INSTALLING AUR SOFTWARE"
echo
cd "${HOME}"
echo "CLOING: AURIC"
git clone "https://github.com/rickellis/AURIC.git"
PKGS=(
# SYSTEM UTILITIES ----------------------------------------------------
'menulibre' # Menu editor
'gtkhash' # Checksum verifier
# TERMINAL UTILITIES --------------------------------------------------
'hyper' # Terminal emulator built on Electron
# UTILITIES -----------------------------------------------------------
'dropbox' # Cloud file storage
'enpass-bin' # Password manager
'slimlock' # Screen locker
'oomox' # Theme editor
# DEVELOPMENT ---------------------------------------------------------
'visual-studio-code-bin' # Kickass text editor
# MEDIA ---------------------------------------------------------------
'spotify' # Music player
'screenkey' # Screencast your keypresses
# 'aftershotpro3' # Photo editor
# POST PRODUCTION -----------------------------------------------------
'peek' # GIF animation screen recorder
# COMMUNICATIONS ------------------------------------------------------
'skypeforlinux-stable-bin' # Skype
# THEMES --------------------------------------------------------------
'gtk-theme-arc-git'
'adapta-gtk-theme-git'
'paper-icon-theme'
'tango-icon-theme'
'tango-icon-theme-extras'
'numix-icon-theme-git'
'sardi-icons'
)
cd ${HOME}/AURIC
chmod +x auric.sh
for PKG in "${PKGS[@]}"; do
./auric.sh -i $PKG
done
echo
echo "Done!"
echo