summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
- }
-}
-