-
Notifications
You must be signed in to change notification settings - Fork 10
/
linux-install.sh
31 lines (28 loc) · 945 Bytes
/
linux-install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#/bin/bash
if command -v gimp >/dev/null 2>&1;
then
echo GIMP found!
if command -v git >/dev/null 2>&1;
then
echo Git found!
echo Installing GIMPshop Reloaded!
git clone https://github.com/cttynul/gimpshop-reloaded.git ~/.gimpshop-temp
rm -f ~/.gimpshop-temp/gimprc
cp -r ~/.gimpshop-temp/. ~/.gimp-2.8
echo Removing temp files
rm -r -f ~/.gimpshop-temp
echo Installation complete! You can now run GIMPshop Reloaded!
echo To display dark-theme Photoshop-like you have to choose "New CS6 Themes..." in
echo Edit Preferences Themes
echo
echo Enjoy - cttynul/zegt
else
echo Git is not installed
echo Install it using your package manager
echo "i.e. (buntu, debian-based) sudo apt-get install git"
fi
else
echo GIMP is not installed
echo Install it using your package manager
echo "i.e. (buntu, debian-based) sudo apt-get install gimp"
fi