Skip to content

Instantly share code, notes, and snippets.

@nicbet
Last active March 15, 2022 16:47
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nicbet/d3fb9e8f85918f9c3cf3aba8e10d8724 to your computer and use it in GitHub Desktop.
Save nicbet/d3fb9e8f85918f9c3cf3aba8e10d8724 to your computer and use it in GitHub Desktop.
Arc-Flatabulous Theme on Ubuntu 20.04
#!/bin/bash
wget http://launchpadlibrarian.net/365856925/multiarch-support_2.27-3ubuntu1_amd64.deb
wget http://launchpadlibrarian.net/353281752/libsass0_3.4.8-1_amd64.deb
wget http://launchpadlibrarian.net/344203197/sassc_3.4.5-1_amd64.deb
sudo dpkg -i multiarch-support_2.27-3ubuntu1_amd64.deb
sudo dpkg -i libsass0_3.4.8-1_amd64.deb
sudo dpkg -i sassc_3.4.5-1_amd64.deb
sudo apt install -y autoconf automake git optipng inkscape gnome-shell libgtk-3-dev gnome-themes-extra gtk2-engines-murrine
git clone https://github.com/andreisergiu98/arc-flatabulous-theme --depth 1 && cd arc-flatabulous-theme
./autogen.sh --prefix=/usr
sudo make install
sudo dpkg -r sassc
sudo dpkg -r libsass0
sudo dpkg -r multiarch-support
@tchar
Copy link

tchar commented Dec 23, 2020

Thanks for this.

Btw you are missing a g in the last dpkg command.

@nicbet
Copy link
Author

nicbet commented Dec 23, 2020

Thanks for this.

Btw you are missing a g in the last dpkg command.

Thanks @tchar. I updated the gist, thanks for spotting the typo!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment