[geany/geany-themes] dc03ce: Add simple `install.sh` script

Matthew Brush git-noreply at xxxxx
Tue Jun 18 10:31:17 UTC 2013


Branch:      refs/heads/master
Author:      Matthew Brush <mbrush at codebrainz.ca>
Committer:   Matthew Brush <mbrush at codebrainz.ca>
Date:        Tue, 18 Jun 2013 10:31:17 UTC
Commit:      dc03ceaa7432743176a1a19ff5636aaf91285d2b
             https://github.com/geany/geany-themes/commit/dc03ceaa7432743176a1a19ff5636aaf91285d2b

Log Message:
-----------
Add simple `install.sh` script

In case someone is too lazy to copy manually and also to lazy to
install and use GNU Make.


Modified Paths:
--------------
    install.sh

Modified: install.sh
10 files changed, 10 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,10 @@
+#!/bin/sh
+CSDIR="$HOME/.config/geany/colorschemes/"
+echo "Installing themes into \`$CSDIR'..."
+mkdir -p "$CSDIR"
+for SCHEME in `ls colorschemes/*.conf`
+do
+  BNAME=`basename "$SCHEME"`
+  echo " => $BNAME"
+  cp "$SCHEME" "$CSDIR"
+done



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list