summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-01-27 18:47:11 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-01-27 18:47:11 +0000
commit85e8be3fa4f4910907d731a4591bf5e7d5135ca6 (patch)
treed6b5fc68fbf752e9c543622e35a0f960cdd92a3d /tools
parent2f360574c3ccafaf2b950e32f7e93753a6bfe230 (diff)
remove gtkrcify tool
git-svn-id: svn://localhost/ardour2/branches/3.0@8589 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/gtkrcify23
1 files changed, 0 insertions, 23 deletions
diff --git a/tools/gtkrcify b/tools/gtkrcify
deleted file mode 100755
index 629cf79a02..0000000000
--- a/tools/gtkrcify
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/perl
-
-%colors;
-
-while (<>) {
- if (/^#\@define/) {
- @words = split;
- $colors{$words[1]} = $words[2];
- next;
- } elsif (/\@COLOR_SCHEME\@/) {
- $scheme_string="";
- foreach $key (sort keys %colors) {
- $scheme_string .= "A_$key:$colors{$key};"
- }
- chop $scheme_string;
- s/\@COLOR_SCHEME\@/$scheme_string/;
- print;
- next;
- } else {
- print;
- }
-}
-