Update Wed Jun 2 04:41:47 AM CDT 2021

This commit is contained in:
Dewalt 2021-06-02 04:41:47 -05:00
parent 3ae1b66676
commit 522598bafb
1 changed files with 11 additions and 6 deletions

View File

@ -468,12 +468,17 @@ fix_bad_apt_hash (){
}
install_atom () {
apt_update && apt_update_complete
echo -e "\n $greenplus installing atom"
eval wget -qO- https://atom.io/download/deb -O /tmp/atom.deb >/dev/null 2>&1
eval dpkg -i /tmp/atom.deb >/dev/null 2>&1
eval rm -f /tmp/atom.deb
eval apt -y --fix-broken install >/dev/null 2>&1
if [ -f /usr/bin/atom ]
then
echo -e "\n $greenminus atom already installed - skipping"
else
apt_update && apt_update_complete
echo -e "\n $greenplus installing atom"
eval wget -qO- https://atom.io/download/deb -O /tmp/atom.deb >/dev/null 2>&1
eval dpkg -i /tmp/atom.deb >/dev/null 2>&1
eval rm -f /tmp/atom.deb
eval apt -y --fix-broken install >/dev/null 2>&1
fi
}
install_sublime () {