Skip to content

Commit

Permalink
install chrome and exa
Browse files Browse the repository at this point in the history
  • Loading branch information
srcrs committed Oct 21, 2023
1 parent c1cee61 commit aff19d2
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#install chrome
set -x && \
apt update && \
apt upgrade -y && \
apt install -y wget curl gnupg libappindicator1 fonts-liberation locales fonts-noto-cjk && \
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list && \
wget -qO - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - && \
apt update && \
apt install -y google-chrome-stable && \
rm -rf /var/lib/apt/lists/ && \
apt-get autoremove -y && \
apt-get autoclean -y

#download linux
curl -s https://api.github.com/repos/srcrs/magicbox/releases/latest | grep browser_download_url | grep linux | cut -d'"' -f4 | wget -i -

0 comments on commit aff19d2

Please sign in to comment.