Skip to content

Commit

Permalink
Add install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
dikiaap committed May 20, 2016
1 parent 94bdb05 commit 1d36e3f
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,31 @@

<p align="center">
<br>
<img src="https://i.imgur.com/YcLDx0f.png" alt="Frost Plank Theme">
<img src="http://i.imgur.com/YcLDx0f.png" alt="Frost Plank Theme">
</p>

## Install

```shell
git clone https://github.com/dikiaap/frost-plank-theme
cd frost-plank-theme
./install.sh
```

or

```shell
sudo cp -r Frost /usr/share/plank/themes/
cp -r Frost ~/.local/share/plank/themes/
```


## Related

[![deviantart](http://i.imgur.com/qfB9Cuc.jpg)](http://dikiaap.deviantart.com/art/Frost-Plank-Theme-607298188)

[![gnome-look](http://i.imgur.com/qjJBYCG.png)](http://gnome-look.org/content/show.php/Frost+Plank+Theme?content=176047)


## License

MIT © [Diki Andriansyah](https://dikiaap.id)
11 changes: 11 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

read -p "Do you want to install Frost [Y/n]?" yn

if [[ $yn =~ ^[Yy]$ ]] || [[ $yn == "" ]]; then

echo "Copying plank theme..."
cp -Ri Frost $HOME/.local/share/plank/themes

echo "Done"
fi

0 comments on commit 1d36e3f

Please sign in to comment.