X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/6d6acaf88addddc7bc7477ccbf3a70804ffa4e9f..c98bda172fec13970df56f9bec501b420c3b51f5:/tools/mktermcol-xcolor diff --git a/tools/mktermcol-xcolor b/tools/mktermcol-xcolor index 112dd83..4dba0bc 100755 --- a/tools/mktermcol-xcolor +++ b/tools/mktermcol-xcolor @@ -1,11 +1,12 @@ #!/usr/bin/env perl -use 5.010; +use 5.014; -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',);