Skip to content

Instantly share code, notes, and snippets.

@lelinhtinh
Created November 20, 2018 04:44
Show Gist options
  • Save lelinhtinh/fa45342f5228a359108337f47951d387 to your computer and use it in GitHub Desktop.
Save lelinhtinh/fa45342f5228a359108337f47951d387 to your computer and use it in GitHub Desktop.
gnome-tweak-tool google-chrome-stable chrome-gnome-shell

Install GNOME Shell extensions on Centos 7

sudo yum update

gnome-tweak-tool

sudo yum install gnome-tweak-tool

google-chrome

sudo nano /etc/yum.repos.d/google-chrome.repo
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl.google.com/linux/linux_signing_key.pub
sudo yum install -y google-chrome-stable

chrome-gnome-shell

sudo yum install git cmake coreutils jq

git clone https://gitlab.gnome.org/GNOME/chrome-gnome-shell.git .chrome-gnome-shell
cd .chrome-gnome-shell/
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_EXTENSION=OFF ../
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment