Skip to content

Commit 4bb8f40

Browse files
committed
docker updated, gimp added, npm added
1 parent 5aa8d46 commit 4bb8f40

File tree

6 files changed

+12
-17
lines changed

6 files changed

+12
-17
lines changed

.gitignore

100644100755
File mode changed.

alias.txt

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ alias gc="git commit"
1818
alias gcm="git commit -m"
1919
alias gps="git push"
2020
alias gpl="git pull"
21+
alias updateMachine="sudo apt update -y && sudo apt upgrade -y && sudo apt full-upgrade -y"
2122

2223
gmerge (){
2324
git checkout $1 && git merge $2 && git pull && git push && git checkout $2

dockerInstall.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ esac
99
#Docker-Compose
1010
read -p "Do you want to install Docker-Compose? (Y/N): " yn
1111
case $yn in
12-
[Yy]*) sudo curl -L "https://github.com/docker/compose/releases/download/1.25.0/docker-compose-$(uname -s)-$(uname -m)" \
13-
-o /usr/local/bin/docker-compose &&
12+
[Yy]*) sudo curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose &&
1413
sudo chmod +x /usr/local/bin/docker-compose &&
1514
sudo ln -fs /usr/local/bin/docker-compose /usr/bin/docker-compose ;;
1615
[Nn]*) echo "Thank you. Docker-Compose Installation aborted." ;;

environmentSetup.sh

-15
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,6 @@ case $yn in
2020
[Nn]*) echo "Thank you. VIM Installation aborted." ;;
2121
esac
2222

23-
#Tweak Tool
24-
read -p "Do you want to install Unity-Tweak-Tool? (Y/N): " yn
25-
case $yn in
26-
[Yy]*) sudo apt install unity &&
27-
sudo apt-get install unity-tweak-tool gnome-tweak-tool &&
28-
sudo apt install dconf-tools &&
29-
#gsettings set org.gnome.shell.extensions.dash-to-dock extend-height false
30-
#gsettings set org.gnome.shell.extensions.dash-to-dock dock-position BOTTOM
31-
#gsettings set org.gnome.shell.extensions.dash-to-dock transparency-mode FIXED
32-
#gsettings set org.gnome.shell.extensions.dash-to-dock dash-max-icon-size 64
33-
#gsettings set org.gnome.shell.extensions.dash-to-dock unity-backlit-items true;;
34-
echo "Installation Unity-Tweak-Tool successful." ;;
35-
[Nn]*) echo "Thank you. Unity-Tweak-Tool Installation aborted." ;;
36-
esac
37-
3823
#Chrome
3924
read -p "Do you want to install Chrome? (Y/N): " yn
4025
case $yn in

gimpInstall.sh

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
sudo apt update -y && sudo apt upgrade -y && sudo apt full-upgrade -y
2+
3+
sudo apt install gimp -y
4+
5+
sudo apt update -y && sudo apt upgrade -y && sudo apt full-upgrade -y

npmInstall.sh

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
sudo tar -C /usr/local --strip-components 1 -xzf node-v8.1.1-linux-x64.tar.gz
2+
3+
ls -l /usr/local/bin/node ls -l /usr/local/bin/npm
4+
5+

0 commit comments

Comments
 (0)