Last active
October 16, 2016 18:45
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 & |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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