Skip to content

Commit 5269d40

Browse files
Added additional files for vim and tmux
Also added an awesome plugin for tmux
1 parent 81af435 commit 5269d40

File tree

7 files changed

+455
-22
lines changed

7 files changed

+455
-22
lines changed

apt-packages.sh

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
#!/bin/bash
2-
apt-get update
3-
apt-get install software-properties-common -y
4-
add-apt-repository ppa:jonathonf/vim -y
5-
add-apt-repository ppa:graphics-drivers -y
6-
apt-get update
7-
apt-get upgrade -y
8-
apt-get install python3-pip zip unzip wget tmux git screen htop vim iputils iputils-ping nfs-common default-jre -y
9-
sudo -H pip3 install --upgrade pip
2+
3+
printf "\n\nInstalling updates...\n\n"
4+
sudo apt-get update
5+
sudo apt-get install software-properties-common -y
6+
sudo add-apt-repository ppa:jonathonf/vim -y
7+
sudo add-apt-repository ppa:graphics-drivers -y
8+
sudo apt-get update
9+
sudo apt-get upgrade -y
10+
11+
printf "\n\nInstalling apt packages...\n\n"
12+
sudo apt-get install python3-pip zip unzip wget tmux git screen htop vim iputils-ping nfs-common default-jre -y
13+
14+
1015

docker-install.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22

33
apt-get install ca-certificates gnupg lsb-release -y
44
apt-get remove docker docker-engine docker.io containerd runc -y
5-
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
5+
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg -y
66
echo \
77
"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
88
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
99

1010
apt-get update
1111
apt-get upgrade -y
12-
apt-get install docker-ce docker-ce-cli containerd.io
13-
docker run hello-world
12+
apt-get install docker-ce docker-ce-cli containerd.io -y

0 commit comments

Comments
 (0)