You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
horst3180_arc-theme/arc-theme-upgrade

20 lines
510 B

#/!bin/bash
# Script to upgrade/install the arc-theme
# Remove previows files
rm -rf /tmp/arc-theme
git clone https://github.com/horst3180/arc-theme /tmp/arc-theme --depth 1 && cd /tmp/arc-theme
# Remove old versions
sudo rm -rf /usr/share/themes/{Arc,Arc-Darker,Arc-Dark}
rm -rf ~/.local/share/themes/{Arc,Arc-Darker,Arc-Dark}
rm -rf ~/.themes/{Arc,Arc-Darker,Arc-Dark}
#./autogen.sh --prefix=/usr
./autogen.sh --prefix=/usr --with-gnome=3.16
sudo make install
# Remove the sources
rm -rf /tmp/arc-theme