X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/ede7dd9ecdc525c8323ea16805f983786fb00c1a..c98bda172fec13970df56f9bec501b420c3b51f5:/tools/mktermcol-xcolor diff --git a/tools/mktermcol-xcolor b/tools/mktermcol-xcolor index f731e5a..4dba0bc 100755 --- a/tools/mktermcol-xcolor +++ b/tools/mktermcol-xcolor @@ -1,14 +1,18 @@ #!/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 (glob 'data/xcolors/themes/*') { - open my $theme, '<', $path; +for my $path (@ARGV) { + open my $theme, '<', $path or do { + warn "could not open $path: $!\n"; + next; + }; (my $name = $path) =~ s{.*/}{}; # basename my (%pal, @pal); @@ -37,6 +41,11 @@ for my $path (glob 'data/xcolors/themes/*') { $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',);