We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
install.sh
1 parent 157abb9 commit dc03ceaCopy full SHA for dc03cea
install.sh
@@ -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