Skip to content

Commit

Permalink
Merge pull request #2 from lucas54neves/development
Browse files Browse the repository at this point in the history
Version 0.0.2
  • Loading branch information
lucas54neves authored Jun 19, 2021
2 parents 6cf91fd + 1c4539f commit 904853c
Showing 1 changed file with 17 additions and 12 deletions.
29 changes: 17 additions & 12 deletions main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ URLs=(
"https://linux.dropbox.com/packages/ubuntu/dropbox_2020.03.04_amd64.deb"
"https://download.docker.com/linux/ubuntu/dists/focal/pool/stable/amd64/docker-ce-cli_20.10.6~3-0~ubuntu-focal_amd64.deb"
"https://az764295.vo.msecnd.net/stable/054a9295330880ed74ceaedda236253b4f39a335/code_1.56.2-1620838498_amd64.deb"
"https://iriun.gitlab.io/iriunwebcam-2.4.1.deb"
"https://downloads.slack-edge.com/linux_releases/slack-desktop-4.16.0-amd64.deb"
"https://download.dbeaver.com/community/21.1.0/dbeaver-ce_21.1.0_amd64.deb"
)

# Programs to be installed in APT
Expand Down Expand Up @@ -44,14 +47,7 @@ programsToBeInstalledAPT=(
# Programs to be installed in Snap
programsToBeInstalledSnap=(
"postman"
"spotify"
"telegram-desktop"
"dbeaver-ce"
)

# Programs to be installed in Snap in classic mode
programsToBeInstalledSnapClassic=(
"slack"
)

# Third-party repositories
Expand Down Expand Up @@ -89,15 +85,16 @@ programsToCheckedAPT=(
"discord"
"google-chrome-stable"
"virtualbox"
"iriun"
"slack"
"dbeaver"
"spotify"
)

# Programs to be checked in Snap at the end of the script
programsToCheckedSnap=(
"slack"
"postman"
"dbeaver-ce"
"telegram-desktop"
"spotify"
)

# System update
Expand Down Expand Up @@ -139,9 +136,17 @@ curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
## Install Node LTS
sudo apt install -y nodejs

# Installing Yarn
# Install Yarn
sudo npm install --global yarn

# Install Spotify
## Configure Spotify debian repository
curl -sS https://download.spotify.com/debian/pubkey_0D811D58.gpg | sudo apt-key add -
echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list

## Install the Spotify client
sudo apt install -y spotify-client

# Script execution report
echo "==========================="
echo "=== Installation report ==="
Expand Down Expand Up @@ -183,4 +188,4 @@ fi
echo "==========================="
echo "Programs that was installed: "${programsInstalled}
echo "Programs that was not installed: "${programsNotInstalled}
echo "==========================="
echo "==========================="

0 comments on commit 904853c

Please sign in to comment.