X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/6d6acaf88addddc7bc7477ccbf3a70804ffa4e9f..9e57a0c381c63dcd3ec4803da1616a5f34bf694c:/tools/mktermcol-xcolor diff --git a/tools/mktermcol-xcolor b/tools/mktermcol-xcolor index 112dd83..596bb56 100755 --- a/tools/mktermcol-xcolor +++ b/tools/mktermcol-xcolor @@ -1,11 +1,12 @@ #!/usr/bin/env perl use 5.010; -use Shiar_Sheet::Colour '1.05'; +use Shiar_Sheet::Colour 1.05; say 'use strict;'; say '+{'; my @names; +my %seen; for my $path (@ARGV) { open my $theme, '<', $path or do { @@ -40,6 +41,11 @@ for my $path (@ARGV) { $huesum > 3 or next; # require number of significant hue changes #TODO tweak to include good-pants, exclude cheesecake-* + if ($seen{"@pal"}++) { + warn "ignore duplicate palette $name\n"; + next; + } + say qq("$name" => {); say qq(\ttitle => '$name',); say qq(\tparent => 'cga',);