Change installed packages

No longer install atom or spotify
This commit is contained in:
Gwen Lofman 2019-04-14 13:53:27 -04:00
parent cdf8222aed
commit f8754c0bdc
5 changed files with 0 additions and 29 deletions

0
install.sh Normal file → Executable file
View File

View File

@ -1,21 +0,0 @@
#!/bin/bash
URL="https://atom.io/download/deb"
TEMP_FILE="/tmp/atom-install.deb"
sudo wget -O "$TEMP_FILE" "$URL" &&
sudo dpkg -i --skip-same-version "$TEMP_FILE" &&
sudo rm "$TEMP_FILE"
PACKAGES=(
# Rust language support
"ide-rust"
# Themes & Syntax themes
"github-atom-light-syntax"
"spacegray-light-neue-ui"
)
echo -e "\npackage installation..."
for PACKAGE in ${PACKAGES[*]}; do
apm install $PACKAGE
done

View File

@ -1,8 +0,0 @@
#!/bin/bash
URL="https://downloads.slack-edge.com/linux_releases/slack-desktop-2.6.3-amd64.deb"
TEMP_FILE="/tmp/slack-install.deb"
sudo wget -O "$TEMP_FILE" "$URL" &&
sudo dpkg -i --skip-same-version "$TEMP_FILE" &&
sudo rm "$TEMP_FILE"

0
profiles/.bash_profile Normal file → Executable file
View File

0
setup.sh Normal file → Executable file
View File