Skip to content

Instantly share code, notes, and snippets.

@mikekasprzak
Last active October 16, 2016 18:45
Show Gist options
  • Save mikekasprzak/be8200cbf420fc034d32 to your computer and use it in GitHub Desktop.
Save mikekasprzak/be8200cbf420fc034d32 to your computer and use it in GitHub Desktop.
Gets the latest version of Chromium, and installs it in the current directory
#!/bin/bash
# chromium.sh - Runs the currently installed version of Chromium, without setuid, and in a different settings folder
.chromium-linux/chrome --user-data-dir=~/.config/chromium-canary --disable-setuid-sandbox &
#!/bin/bash
# get_chromium.sh - Gets the latest version of Chromium, and installs it in the current directory
wget https://download-chromium.appspot.com/dl/Linux_x64 -O /tmp/chromium.zip
rm -fr .chromium-linux
unzip -o /tmp/chromium.zip
mv chrome-linux .chromium-linux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment