Skip to content

Commit dc03cea

Browse files
committed
Add simple install.sh script
In case someone is too lazy to copy manually and also to lazy to install and use GNU Make.
1 parent 157abb9 commit dc03cea

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

install.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/sh
2+
CSDIR="$HOME/.config/geany/colorschemes/"
3+
echo "Installing themes into \`$CSDIR'..."
4+
mkdir -p "$CSDIR"
5+
for SCHEME in `ls colorschemes/*.conf`
6+
do
7+
BNAME=`basename "$SCHEME"`
8+
echo " => $BNAME"
9+
cp "$SCHEME" "$CSDIR"
10+
done

0 commit comments

Comments
 (0)