added tango icons

This commit is contained in:
Johannes Findeisen 2020-08-24 03:37:43 +02:00
commit 0c516ac8da
No known key found for this signature in database
GPG key ID: 2128DE136929E573
11573 changed files with 2187070 additions and 6 deletions

View file

@ -0,0 +1,11 @@
def designDirectory = new File('/Users/unrz198/git/rrze-icon-set/monocrom')
def overviewIconsDimensionDir = new File(designDirectory.getPath()+ File.separator + "48x48")
overviewIconsDimensionDir.eachDir () { categoryDirectory ->
categoryDirectory.eachFile { file ->
if (file.toURL().openConnection().getContentType() == "image/png") {
//here is JAVA magic needed
}
}
}