diff options
| author | Daniel Byron <=> | 2015-07-22 13:25:47 +1000 |
|---|---|---|
| committer | Daniel Byron <=> | 2015-07-22 13:27:33 +1000 |
| commit | f9d0b5e700be7c9d14acb66ad99a9d40a5a60701 (patch) | |
| tree | ef6cf11c4569b3cbc16489bbbe0b9d9a815ea4d7 /main.go | |
| parent | Update README.md (diff) | |
| download | schemer2-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.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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") |