From 85e8be3fa4f4910907d731a4591bf5e7d5135ca6 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 27 Jan 2011 18:47:11 +0000 Subject: [PATCH] remove gtkrcify tool git-svn-id: svn://localhost/ardour2/branches/3.0@8589 d708f5d6-7413-0410-9779-e7cbd77b26cf --- tools/gtkrcify | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100755 tools/gtkrcify 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; - } -} -