1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| #List of subreddits to check
| SUBREDDITS=("EarthPorn" "CityPorn" "SpacePorn" "Wallpapers" "CarPorn" "ArchitecturePorn")
| #What sort fetch list by, will choose the latest
| SORT=new
| #User-agent, shouldn't have to change
| USER=$(whoami)
| #Size of final image, currently unused
| SIZE=1920x1080
| #Whether to write the title on the final image
| WRITE_TITLE=1
| #Title color for ImageMagick
| TITLE_COLOR="white"
| #Title position for ImageMagick (North, South, East, West, Centre)
| TITLE_POSITION="Southeast"
| #Title font size
| TITLE_SIZE=30
|
|