aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorDaniel Byron <=>2015-07-22 13:25:47 +1000
committerDaniel Byron <=>2015-07-22 13:27:33 +1000
commitf9d0b5e700be7c9d14acb66ad99a9d40a5a60701 (patch)
treeef6cf11c4569b3cbc16489bbbe0b9d9a815ea4d7 /main.go
parentUpdate README.md (diff)
downloadschemer2-f9d0b5e700be7c9d14acb66ad99a9d40a5a60701.tar.xz
schemer2-f9d0b5e700be7c9d14acb66ad99a9d40a5a60701.zip
Added imageOverlay option to draw icons and images over the top of generated wallpaper
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.go b/main.go
index 00bc911..8ae1e34 100644
--- a/main.go
+++ b/main.go
@@ -28,6 +28,7 @@ var (
imageWidth *int
imageHeight *int
imageOutType *string // Eg, "random", "circles", "stripes", etc...
+ imageOverlay *string
// Circles image output options
circlesSize *int
@@ -112,6 +113,7 @@ func main() {
imageOutTypeDesc += "\n"
}
imageOutType = flag.String("imageOutType", "random", imageOutTypeDesc)
+ imageOverlay = flag.String("imageOverlay", "", "Filename of image to draw on top of generated image (OS/Distro logo, etc...)")
// Circles image output options
circlesSize = flag.Int("circlesSize", 100, "Size of circles in output image")