1
0
mirror of https://github.com/horst3180/arc-theme.git synced 2024-09-29 22:40:44 +00:00
horst3180_arc-theme/arc-theme-upgrade

20 lines
510 B
Plaintext
Raw Normal View History

2015-10-07 23:17:03 +00:00
#/!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}
2015-11-02 23:15:08 +00:00
#./autogen.sh --prefix=/usr
./autogen.sh --prefix=/usr --with-gnome=3.16
2015-10-07 23:17:03 +00:00
sudo make install
# Remove the sources
rm -rf /tmp/arc-theme