-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathinstall.sh
executable file
·54 lines (43 loc) · 833 Bytes
/
install.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
#!/bin/bash
# Copy dotfiles
./copy.sh
# Update Ubuntu and get standard repository programs
sudo apt update && sudo apt full-upgrade -y
function install {
which $1 &> /dev/null
if [ $? -ne 0 ]; then
echo "Installing: ${1}..."
sudo apt install -y $1
else
echo "Already installed: ${1}"
fi
}
# Basics
install awscli
install chrome-gnome-shell
install chromium-browser
install curl
install dialog
install exfat-utils
install file
install git
install htop
install nmap
install openvpn
install tree
install vim
install wget
# Image processing
install gimp
install jpegoptim
install optipng
# Fun stuff
install figlet
install lolcat
# Run all scripts in programs/
for f in programs/*.sh; do bash "$f" -H; done
# Get all upgrades
sudo apt upgrade -y
sudo apt autoremove -y
# Fun hello
figlet "Hello!" | lolcat