📕Chromium/Chrome Setup
➦ Why should you do this setup?
Chromium / Chrome binary is a mandatory requirement for many awesome plugins and commands like AI tools, Screenshot, Rayso, Rayso based logs, Carbon, etc.
Here we will show how to setup this for Debian, Ubuntu, Arch, Fedora and their derivatives.
sudo apt install chromiumsudo apt install chromium-browsersudo pacman -S chromiumsudo dnf install chromiumnano config.pyCHROME_BIN = "/usr/bin/chromium"Now to save use Ctrl+O and press Enter , then use Ctrl+X to exit.
sudo wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - && \
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google.list && \
sudo apt-get update -y && \
sudo apt-get install -y google-chrome-stable xvfb libxi6 libgconf-2-4 default-jdk && \
sudo chmod +x /usr/bin/google-chromesudo yay -S google-chromesudo dnf install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpmnano config.pyCHROME_BIN = "/usr/bin/google-chrome"Now to save use Ctrl+O and press Enter , then use Ctrl+X to exit.
Last updated
Was this helpful?