Last active
March 15, 2022 16:47
-
-
Save nicbet/d3fb9e8f85918f9c3cf3aba8e10d8724 to your computer and use it in GitHub Desktop.
Arc-Flatabulous Theme on Ubuntu 20.04
This file contains 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 | |
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 |
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
Thanks for this.
Btw you are missing a g in the last dpkg command.